|
|
|
|
|
by nercht12
2083 days ago
|
|
Copper does not distinguish between function and object. An object-function has two parts: the member part and the executable body. In C++, it's analogous to: class FunctionObject { FunctionObject* members[]; void* operator() { /* executable body */ } }; |
|