| 121 | std::string hexPrefixEncode(bytesConstRef _d1, unsigned _o1, bytesConstRef _d2, unsigned _o2, bool _leaf); |
| 122 | |
| 123 | inline std::string hexPrefixEncode(NibbleSlice _s, bool _leaf, int _begin = 0, int _end = -1) |
| 124 | { |
| 125 | return hexPrefixEncode(_s.data, _leaf, _begin, _end, _s.offset); |
| 126 | } |
| 127 | |
| 128 | inline std::string hexPrefixEncode(NibbleSlice _s1, NibbleSlice _s2, bool _leaf) |
| 129 | { |
no outgoing calls