| 51 | } |
| 52 | |
| 53 | bool Scalar::ApproxEquals(const Scalar& other, const EqualOptions& options) const { |
| 54 | return ScalarApproxEquals(*this, other, options); |
| 55 | } |
| 56 | |
| 57 | Status Scalar::Accept(ScalarVisitor* visitor) const { |
| 58 | return VisitScalarInline(*this, visitor); |