BezierLookUpTable
extension BezierLookUpTable where Output: BezierPointType- 
                  
                  Looks up the closest output to a given output value. Returns nilif this lookup table is empty.DeclarationSwift @inlinable public func closestEntry(toOutput output: Output) -> Entry?
- 
                  
                  Looks up the closest entry index to a given output value. Returns nilif this lookup table is empty.DeclarationSwift @inlinable public func closestEntryIndex(toOutput output: Output) -> Int?
- 
                  
                  Looks up the indices on tablethat approximate the given producer function towards zero, and returns the indices of the inputs that maximally approached zero.Returns an empty array if this lookup table is empty. Expects producerto be a contiguous function mappingInputintoOutput.Scalar.DeclarationSwift @inlinable public func approximateToZero( _ producer: (Output) -> Output.Scalar ) -> [Int]
