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