summary refs log tree commit diff stats
path: root/lib/system/helpers2.nim
blob: 8bd69ad7119925dd48e60c5864b22164f4a0c2ff (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 & ") "