Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
eqSlice :: Equivalence -> Slice -> Slice -> Boolinspection-testing Test.Inspection.Core This is a heuristic, which only works if both slices have auxiliary variables in the right order. (This is mostly to work-around the buggy CSE in GHC-8.0) It also breaks if there is shadowing.
eqSlice' :: Equivalence -> Slice -> Slice -> Either SDoc ()inspection-testing Test.Inspection.Core Like eqSlice but also returns an explanation of inequality.
equality :: (s ~ a, t ~ b) => Iso s t a boptics-core Optics.Iso Capture type constraints as an isomorphism. Note: This is the identity optic:
>>> :t view equality view equality :: a -> a
-
optics-core Optics.Lens Strict version of equality. Useful for strictifying optics with lazy (irrefutable) pattern matching by precomposition, e.g.
_1' = equality' % _1
-
ansi-wl-pprint Text.PrettyPrint.ANSI.Leijen No documentation available.
equal :: LuaError e => StackIndex -> StackIndex -> LuaE e Boolhslua-core HsLua.Core Returns True if the two values in acceptable indices index1 and index2 are equal, following the semantics of the Lua == operator (that is, may call metamethods). Otherwise returns False. Also returns False if any of the indices is non valid. Uses compare internally.
equalFilePath :: FilePath -> FilePath -> Boolrio RIO.FilePath 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:/")
eqBy :: (Vector v a, Vector v b) => (a -> b -> Bool) -> v a -> v b -> Boolrio RIO.Vector No documentation available.
equal :: (Storable a, Eq a) => Vector a -> Vector a -> Boolstorablevector Data.StorableVector.Lazy No documentation available.
equal :: (Size size, Storable a, Eq a) => Vector size a -> Vector size a -> Boolstorablevector Data.StorableVector.Lazy.Typed No documentation available.