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.
-
wl-pprint-annotated Text.PrettyPrint.Annotated.WL The document equals contains an equal sign, "=".
equal :: (Show a, Eq a) => a -> a -> Assertionchell Test.Chell Assert that two values are equal.
-
chell Test.Chell Assert that two containers have the same items, in the same order.
equalLines :: (Ord a, IsText a) => a -> a -> Assertionchell Test.Chell Assert that two pieces of text are equal. This uses a diff algorithm to check line-by-line, so the error message will be easier to read on large inputs.
equalLinesWith :: Ord a => (a -> [String]) -> a -> a -> Assertionchell Test.Chell Variant of equalLines which allows a user-specified line-splitting predicate.
equalWithin :: (Real a, Show a) => a -> a -> a -> Assertionchell Test.Chell Assert that two values are within some delta of each other.
-
country Country.Identifier Equatorial Guinea
equivalentTo :: Ord o => Sig s1 o x -> Sig s2 o x -> RefinementProperty o xdejafu Test.DejaFu.Refinement Observational equivalence. True iff the result-set of the left expression is equal to the result-set of the right expression. The two signatures can have different state types, this lets you compare the behaviour of different data structures. The observation and seed types must match, however.
equalShape :: DirTree a -> DirTree b -> Booldirectory-tree System.Directory.Tree Tests equality of two trees, ignoring their free variable portion. Can be used to check if any files have been added or deleted, for instance.
equalFilePath :: FilePath -> FilePath -> Booleasy-file System.EasyFile 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.
x == y ==> equalFilePath x y normalise x == normalise y ==> equalFilePath x y Posix: equalFilePath "foo" "foo/" Posix: not (equalFilePath "foo" "/foo") Posix: not (equalFilePath "foo" "FOO") Windows: equalFilePath "foo" "FOO"