Skip to content

Commit

Permalink
[backport] fix #11440, add docs to isNil for seq types needing nilseq (
Browse files Browse the repository at this point in the history
…#13234) [ci skip]

(cherry picked from commit f12bea1)
  • Loading branch information
D-Nice authored and narimiran committed Jan 23, 2020
1 parent 13ad15d commit 2e9d595
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/system.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2931,8 +2931,20 @@ else:
{.pragma: nilError.}

proc isNil*[T](x: seq[T]): bool {.noSideEffect, magic: "IsNil", nilError.}
## Requires `--nilseqs:on` since 0.19.
##
## Seqs are no longer nil by default, but set and empty.
## Check for zero length instead.
##
## See also:
## * `isNil(string) <#isNil,string>`_

proc isNil*[T](x: ref T): bool {.noSideEffect, magic: "IsNil".}
proc isNil*(x: string): bool {.noSideEffect, magic: "IsNil", nilError.}
## Requires `--nilseqs:on`.
##
## See also:
## * `isNil(seq[T]) <#isNil,seq[T][T]>`_

proc isNil*[T](x: ptr T): bool {.noSideEffect, magic: "IsNil".}
proc isNil*(x: pointer): bool {.noSideEffect, magic: "IsNil".}
Expand Down

0 comments on commit 2e9d595

Please sign in to comment.