Create a slice that refers to a @c uint8_t byte array. @param [in] d The input array. @param [in] n Number of bytes in the array.
| 61 | /// @param [in] n |
| 62 | /// Number of bytes in the array. |
| 63 | Slice(const uint8_t* d, size_t n) : data_(d), size_(n) { } |
| 64 | |
| 65 | /// Create a slice that refers to a @c char byte array. |
| 66 | /// |