| 809 | optional_ref<const BytesValue> AsBytes() const& ABSL_ATTRIBUTE_LIFETIME_BOUND; |
| 810 | absl::optional<BytesValue> AsBytes() &&; |
| 811 | absl::optional<BytesValue> AsBytes() const&& { |
| 812 | return common_internal::AsOptional(AsBytes()); |
| 813 | } |
| 814 | |
| 815 | // Performs a checked cast from a value to a double value, |
| 816 | // returning a non-empty optional with either a value or reference to the |
no test coverage detected