diff options
Diffstat (limited to 'src/utils/map.nim')
-rw-r--r-- | src/utils/map.nim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/utils/map.nim b/src/utils/map.nim new file mode 100644 index 00000000..526b9154 --- /dev/null +++ b/src/utils/map.nim @@ -0,0 +1,21 @@ +import algorithm + +func searchInMap*[U, T](a: openarray[(U, T)], u: U): int = + when not (typeof(u) is U): + if c > cast[typeof(c)](high(U)): + return -1 + binarySearch(a, u, proc(x: (U, T), y: U): int = cmp(x[0], y)) + +func isInMap*[U, T](a: openarray[(U, T)], u: U): bool = + a.searchInMap(u) != -1 + +func isInRange*[U](a: openarray[(U, U)], u: U): bool = + let res = binarySearch(a, u, proc(x: (U, U), y: U): int = + if x[0] < y: + -1 + elif x[1] > y: + 1 + else: + 0 + ) + return res != -1 |