Procedures and macros to alias the procedure call operator.
proc call[T](p: proc (): T {...}{.nimcall.}): T
-
Source
Edit
proc call[T](p: proc (): T {...}{.closure.}): T
-
Source
Edit
proc call(p: proc () {...}{.nimcall.}) {...}{.raises: [], tags: [].}
-
Source
Edit
proc call(p: proc () {...}{.closure.}) {...}{.raises: [], tags: [].}
-
Source
Edit
macro call(p: proc; arg1: untyped; remaining: varargs[untyped]): untyped
-
Source
Edit