Skip to content

Instantly share code, notes, and snippets.

@def-
Last active February 16, 2016 16:08
Show Gist options
  • Select an option

  • Save def-/4ec0e315f6d74e64688b to your computer and use it in GitHub Desktop.

Select an option

Save def-/4ec0e315f6d74e64688b to your computer and use it in GitHub Desktop.
iterator `..`[T](s: Slice[T], step = 1): T {.inline.} =
var pos: T = int(s.a)
while pos <= int(s.b):
yield T(pos)
pos += step
for i in 1..10..2:
echo i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment