// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package scalar

import 

// Equals returns true if two scalars are equal, which means they have the same
// datatype, validity and value.
func (,  Scalar) bool {
	if  ==  {
		return true
	}

	if !arrow.TypeEqual(.DataType(), .DataType()) {
		return false
	}

	if .IsValid() != .IsValid() {
		return false
	}

	if !.IsValid() {
		return true
	}

	return .equals()
}

type equalOption struct {
	atol   float64 // absolute tolerance
	nansEq bool    // whether NaNs are considered equal
}

// EqualOption is a functional option type used to configure how Records and Arrays are compared.
type EqualOption func(*equalOption)

// WithNaNsEqual configures the comparison functions so that NaNs are considered equal.
func ( bool) EqualOption {
	return func( *equalOption) {
		.nansEq = 
	}
}

// WithAbsTolerance configures the comparison functions so that 2 floating point values
// v1 and v2 are considered equal if |v1-v2| <= atol.
func ( float64) EqualOption {
	return func( *equalOption) {
		.atol = 
	}
}

const defaultAbsoluteTolerance = 1e-5

type approxEqualScalar interface {
	approxEquals(Scalar, equalOption) bool
}

func (,  Scalar,  ...EqualOption) bool {
	 := equalOption{
		atol:   defaultAbsoluteTolerance,
		nansEq: false,
	}
	for ,  := range  {
		(&)
	}

	switch {
	case  == :
		return true
	case !arrow.TypeEqual(.DataType(), .DataType()):
		return false
	case .IsValid() != .IsValid():
		return false
	case !.IsValid():
		return true
	}

	if ,  := .(approxEqualScalar);  {
		return .approxEquals(, )
	}

	return .equals()
}