Added documentation to macros.items.

This commit is contained in:
Dominik Picheta
2015-08-03 17:05:14 +01:00
parent 04dc46b1aa
commit 303bc45745

View File

@@ -720,6 +720,7 @@ proc ident*(name: string): NimNode {.compileTime,inline.} = newIdentNode(name)
## Create a new ident node from a string
iterator items*(n: NimNode): NimNode {.inline.} =
## Iterates over the children of the NimNode ``n``.
for i in 0 ..< n.len:
yield n[i]