MCPcopy Create free account
hub / github.com/digego/extempore / closure_code

Function closure_code

src/Scheme.cpp:636–636  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

634int is_closure(pointer p) { return (type(p)==T_CLOSURE); }
635int is_macro(pointer p) { return (type(p)==T_MACRO); }
636pointer closure_code(pointer p) { return car(p); }
637pointer closure_env(pointer p) { return cdr(p); }
638
639int is_continuation(pointer p) { return (type(p)==T_CONTINUATION); }

Callers 4

ipcCallMethod · 0.85
ipcDefineMethod · 0.85
opexe_0Function · 0.85
opexe_6Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected