| 1079 | // `AsBool()`. |
| 1080 | template <typename T> |
| 1081 | std::enable_if_t<std::is_same_v<BoolValue, T>, absl::optional<BoolValue>> |
| 1082 | As() & { |
| 1083 | return AsBool(); |
| 1084 | } |
| 1085 | template <typename T> |
| 1086 | std::enable_if_t<std::is_same_v<BoolValue, T>, absl::optional<BoolValue>> As() |
| 1087 | const& { |
nothing calls this directly
no test coverage detected