MCPcopy Create free account
hub / github.com/couchbase/fleece / tinyValue

Method tinyValue

Fleece/Core/Value.hh:212–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210
211 internal::tags tag() const noexcept FLPURE {return (internal::tags)(_byte[0] >> 4);}
212 unsigned tinyValue() const noexcept FLPURE {return _byte[0] & 0x0F;}
213
214 // numbers:
215 uint16_t shortValue() const noexcept FLPURE {return (((uint16_t)_byte[0] << 8) | _byte[1]) & 0x0FFF;}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected