| 2141 | |
| 2142 | explicit operator bool() const { return Equals(FieldPath{}); } |
| 2143 | bool operator!() const { return !Equals(FieldPath{}); } |
| 2144 | |
| 2145 | bool IsFieldPath() const { return std::holds_alternative<FieldPath>(impl_); } |
| 2146 | bool IsName() const { return std::holds_alternative<std::string>(impl_); } |