pub fn firstIsDigit(self: FloatStream, comptime base: u8) bool
pub fn firstIsDigit(self: FloatStream, comptime base: u8) bool { comptime std.debug.assert(base == 10 or base == 16); if (self.first()) |ok| { return common.isDigit(ok, base); } return false; }