True if the slice's length is zero.
| 110 | |
| 111 | /// True if the slice's length is zero. |
| 112 | bool empty() const noexcept FLPURE {return size == 0;} |
| 113 | |
| 114 | /// Testing a slice as a bool results in false for nullslice, true for anything else. |
| 115 | explicit operator bool() const noexcept FLPURE {return buf != nullptr;} |
nothing calls this directly
no outgoing calls
no test coverage detected