| 83 | bool isEmpty() const FLPURE {return !_value && !_native;} |
| 84 | bool isMutated() const FLPURE {return !_value;} |
| 85 | bool hasNative() const FLPURE {return _native != nullptr;} |
| 86 | |
| 87 | Native asNative(const MCollection<Native> *parent) const { |
| 88 | if (_native || !_value) { |
nothing calls this directly
no outgoing calls
no test coverage detected