MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / Null

Method Null

include/null.h:186–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184struct Null
185{
186 inline Null() : isNull(true) { }
187 inline Null(const Null<T> &inOther) : isNull(inOther.isNull), value(inOther.value) { }
188 inline Null(const T& inVal) : isNull(false), value(inVal) { }
189 inline Null(const null &) : isNull(true) { }

Callers

nothing calls this directly

Calls 2

nullClass · 0.70
isNullMethod · 0.45

Tested by

no test coverage detected