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