mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-06 03:44:14 +00:00
make 'nim doc2 system.nim' work again
This commit is contained in:
@@ -2016,14 +2016,14 @@ when defined(nimNewRoof):
|
||||
inc(res)
|
||||
|
||||
iterator `..`*(a, b: int64): int64 {.inline.} =
|
||||
## A special version of `..`` for ``int64`` only.
|
||||
## A special version of ``..`` for ``int64`` only.
|
||||
var res = a
|
||||
while res <= b:
|
||||
yield res
|
||||
inc(res)
|
||||
|
||||
iterator `..`*(a, b: int32): int32 {.inline.} =
|
||||
## A special version of `..`` for ``int32`` only.
|
||||
## A special version of ``..`` for ``int32`` only.
|
||||
var res = a
|
||||
while res <= b:
|
||||
yield res
|
||||
|
||||
Reference in New Issue
Block a user