summary refs log tree commit diff stats
path: root/lib/system/helpers2.nim
blob: c67a2c2785ca3fd098d36bdd2f4898a68bfe479b (plain) (blame)
1
2
3
4
5
6
7
# imported by other modules, unlike helpers.nim which is included

template formatErrorIndexBound*[T](i, a, b: T): string =
  "index out of bounds: (a:" & $a & ") <= (i:" & $i & ") <= (b:" & $b & ") "

template formatErrorIndexBound*[T](i, n: T): string =
  "index out of bounds: (i:" & $i & ") <= (n:" & $n & ") "