| 47 | using internal::checked_pointer_cast; |
| 48 | |
| 49 | bool Scalar::Equals(const Scalar& other, const EqualOptions& options) const { |
| 50 | return ScalarEquals(*this, other, options); |
| 51 | } |
| 52 | |
| 53 | bool Scalar::ApproxEquals(const Scalar& other, const EqualOptions& options) const { |
| 54 | return ScalarApproxEquals(*this, other, options); |
no test coverage detected