| 78 | bool isPointer() const noexcept FLPURE {return _tag != kInlineTag;} |
| 79 | bool isInline() const noexcept FLPURE {return !isPointer();} |
| 80 | const Value* pointer() const noexcept FLPURE {return (const Value*)_pointer;} |
| 81 | const Value* asPointer() const noexcept FLPURE {return (isPointer() ? pointer() : nullptr);} |
| 82 | const Value* inlinePointer() const noexcept FLPURE {return (const Value*)&_inlineVal;} |
| 83 | void setPointer(const Value*); |
nothing calls this directly
no outgoing calls
no test coverage detected