| 113 | } |
| 114 | |
| 115 | CelValueMatcher IsCelDouble(testing::Matcher<double> m) { |
| 116 | return CelValueMatcher(new CelValueMatcherImpl<double>(std::move(m))); |
| 117 | } |
| 118 | |
| 119 | CelValueMatcher IsCelString(testing::Matcher<absl::string_view> m) { |
| 120 | return CelValueMatcher(new CelValueMatcherImpl<CelValue::StringHolder>( |
no outgoing calls