Skip to content
Snippets Groups Projects
Commit 9bd1664b authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

Merge remote-tracking branch 'origin/master' into web

parents 0eff216e 743642c8
No related branches found
No related tags found
No related merge requests found
......@@ -37,11 +37,15 @@ public class Range<Key extends Comparable<Key>> {
this.boundType = bt;
}
<<<<<<< HEAD
public <T> boolean inBounds(T key) {
=======
<<<<<<< HEAD
public <T> boolean inBounds(T key) {
=======
public boolean inBounds(Key key, GeneralCompare<Key> gc) {
>>>>>>> fd3aa70... add Bound and Range
>>>>>>> refs/remotes/origin/master
if (boundType == Bound.ANY) return true;
else if (boundType == Bound.LOWER) return gc.compare(lower, key) <= 0;
else if (boundType == Bound.UPPER) return gc.compare(upper, key) >= 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment