@returns a mutable byte vector_ref to the object's data.
| 145 | |
| 146 | /// @returns a mutable byte vector_ref to the object's data. |
| 147 | bytesRef ref() { return bytesRef(m_data.data(), N); } |
| 148 | |
| 149 | /// @returns a constant byte vector_ref to the object's data. |
| 150 | bytesConstRef ref() const { return bytesConstRef(m_data.data(), N); } |