| 109 | } |
| 110 | |
| 111 | CelValueMatcher IsCelUint64(testing::Matcher<uint64_t> m) { |
| 112 | return CelValueMatcher(new CelValueMatcherImpl<uint64_t>(std::move(m))); |
| 113 | } |
| 114 | |
| 115 | CelValueMatcher IsCelDouble(testing::Matcher<double> m) { |
| 116 | return CelValueMatcher(new CelValueMatcherImpl<double>(std::move(m))); |