MCPcopy Create free account
hub / github.com/WheretIB/nullc / FuncCompare

Method FuncCompare

NULLC/StdLib.cpp:785–788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

783}
784
785int NULLC::FuncCompare(NULLCFuncPtr a, NULLCFuncPtr b)
786{
787 return a.context == b.context && a.id == b.id;
788}
789int NULLC::FuncNCompare(NULLCFuncPtr a, NULLCFuncPtr b)
790{
791 return a.context != b.context || a.id != b.id;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected