Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
equalLength :: [Sequence] -> Boolelynx-seq ELynx.Sequence.Sequence Check if all Sequences have equal length.
equal :: (Eq a, Ord a) => Topology a -> Topology a -> Either String Boolelynx-tree ELynx.Topology.Phylogeny The equality check is slow because the order of children is considered to be arbitrary. Return Left if a topology does not have unique leaves.
equal' :: Eq a => Topology a -> Topology a -> Boolelynx-tree ELynx.Topology.Phylogeny Same as equal, but assume that leaves are unique.
equal :: (Eq e, Eq a, Ord a) => Tree e a -> Tree e a -> Either String Boolelynx-tree ELynx.Tree.Phylogeny The equality check is slow because the order of children is considered to be arbitrary. Return Left if a tree does not have unique leaves.
equal' :: (Eq e, Eq a) => Tree e a -> Tree e a -> Boolelynx-tree ELynx.Tree.Phylogeny Same as equal, but assume that leaves are unique.
equalFilePath :: FilePath -> FilePath -> Boolhledger Hledger.Cli.Script Equality of two FILEPATHs. If you call System.Directory.canonicalizePath first this has a much better chance of working. Note that this doesn't follow symlinks or DOSNAM~1s. Similar to normalise, this does not expand "..", because of symlinks.
x == y ==> equalFilePath x y normalise x == normalise y ==> equalFilePath x y equalFilePath "foo" "foo/" not (equalFilePath "/a/../c" "/c") not (equalFilePath "foo" "/foo") Posix: not (equalFilePath "foo" "FOO") Windows: equalFilePath "foo" "FOO" Windows: not (equalFilePath "C:" "C:/")
equivalentPayloadSelection :: PayloadSelection -> PayloadSelection -> Boolkatip Katip.Core Compares two payload selections for equivalence. With SomeKeys, ordering and duplicates are ignored.
equivalentPositions :: Num a => ReadNum a -> CharParser () [[a]]matrix-as-xyz Data.Matrix.AsXYZ.ParseXY General equivalent positions parser
>>> parse (equivalentPositions integral) "" "x+1,y+2" Right [[1,0,1],[0,1,2]]
equivalentPositions :: Num a => ReadNum a -> CharParser () [[a]]matrix-as-xyz Data.Matrix.AsXYZ.ParseXYZ Jones-Faithful notation parser
>>> parse (equivalentPositions integral) "" "x+1,y+2,z+3" Right [[1,0,0,1],[0,1,0,2],[0,0,1,3]]
equalTo :: HasEqAsymmetric a b => a -> b -> EqCompareType a bmixed-types-num Numeric.MixedTypes.Eq No documentation available.