mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
8 lines
175 B
Nim
8 lines
175 B
Nim
# imported by mdotcall
|
|
|
|
proc baseAddr*[T](x: openarray[T]): pointer =
|
|
cast[pointer](x)
|
|
|
|
proc shift*(p: pointer, delta: int): pointer =
|
|
cast[pointer](cast[int](p) + delta)
|