bytes: [32]u8
len: u8
pub fn toSlice(hs: *const HexString) []const u8
Result is byte values, not hex-encoded.
hs: *const HexString
pub fn toSlice(hs: *const HexString) []const u8 { return hs.bytes[0..hs.len]; }
pub const HexString = struct { bytes: [32]u8, len: u8, /// Result is byte values, *not* hex-encoded. pub fn toSlice(hs: *const HexString) []const u8 { return hs.bytes[0..hs.len]; } }
Press escape to exit search and then '?' to see more options.