Compare commits

...

3 Commits
0.2.0 ... main

Author SHA1 Message Date
Jonathan Bernard
8122660da3 Added indexOf template. 2018-06-11 21:43:31 -05:00
Jonathan Bernard
2a052ac96b Add doWhile template. 2017-11-25 15:57:38 -06:00
Jonathan Bernard
af47c13e7e Added .gitignore 2017-05-05 19:19:41 -05:00
3 changed files with 18 additions and 1 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
nimcache/
tlangutils
*.sw?

View File

@ -26,4 +26,18 @@ proc sameContents*[T](a1, a2: openArray[T]): bool =
if not a2.anyIt(a == it): return false
return true
template indexOf*(s, pred: untyped): int =
var foundIdx = -1
var idx = 0
for it {.inject.} in items(s):
if pred:
foundIdx = idx
break
idx += 1
foundIdx
template doWhile*(a, b: untyped): untyped =
b
while a:
b

View File

@ -1,6 +1,6 @@
# Package
version = "0.2.0"
version = "0.4.0"
author = "Jonathan Bernard"
description = "Language extensions (templates, macros) I commonly use."
license = "MIT"