| 65 | template <typename T> |
| 66 | struct binaryToStringHelper { |
| 67 | constexpr binaryToStringHelper(Slice<T>&& myBuf) noexcept : buf_(std::move(myBuf)) { |
| 68 | } |
| 69 | |
| 70 | // the Slice is stored by value to avoid dangling references, in case we |
| 71 | // invoke: |
nothing calls this directly
no outgoing calls
no test coverage detected