Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
allEqual :: Eq a => [a] -> Boolelynx-tools ELynx.Tools.Equality Test if all elements of a list are equal; returns True for empty list.
allNearlyEqual :: [Double] -> Boolelynx-tools ELynx.Tools.Equality Test if all elements of a list are nearly equal; returns True for empty list.
allNearlyEqualWith :: Double -> [Double] -> Boolelynx-tools ELynx.Tools.Equality Test if all elements of a list are nearly equal; returns True for empty list.
nearlyEq :: Double -> Double -> Boolelynx-tools ELynx.Tools.Equality Test for equality with predefined tolerance eps (needed because of machine precision).
nearlyEqList :: [Double] -> [Double] -> Boolelynx-tools ELynx.Tools.Equality Test if two lists are nearly equal; use tolerance eps.
nearlyEqListWith :: Double -> [Double] -> [Double] -> Boolelynx-tools ELynx.Tools.Equality Test if two lists are nearly equal.
nearlyEqMat :: Matrix R -> Matrix R -> Boolelynx-tools ELynx.Tools.Equality Test if two vectors are nearly equal; use tolerance eps.
nearlyEqMatWith :: Double -> Matrix R -> Matrix R -> Boolelynx-tools ELynx.Tools.Equality Test if two vectors are nearly equal.
nearlyEqVec :: Vector R -> Vector R -> Boolelynx-tools ELynx.Tools.Equality Test if two vectors are nearly equal; use tolerance eps.
nearlyEqVecWith :: Double -> Vector R -> Vector R -> Boolelynx-tools ELynx.Tools.Equality Test if two vectors are nearly equal.