pub fn firstIs(self: FloatStream, comptime cs: []const u8) bool
pub fn firstIs(self: FloatStream, comptime cs: []const u8) bool { if (self.first()) |ok| { inline for (cs) |c| if (ok == c) return true; } return false; }