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.

  1. eqSlice :: Equivalence -> Slice -> Slice -> Bool

    inspection-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.

  2. eqSlice' :: Equivalence -> Slice -> Slice -> Either SDoc ()

    inspection-testing Test.Inspection.Core

    Like eqSlice but also returns an explanation of inequality.

  3. equality :: (s ~ a, t ~ b) => Iso s t a b

    optics-core Optics.Iso

    Capture type constraints as an isomorphism. Note: This is the identity optic:

    >>> :t view equality
    view equality :: a -> a
    

  4. equality' :: Lens a b a b

    optics-core Optics.Lens

    Strict version of equality. Useful for strictifying optics with lazy (irrefutable) pattern matching by precomposition, e.g.

    _1' = equality' % _1
    

  5. equals :: Doc

    ansi-wl-pprint Text.PrettyPrint.ANSI.Leijen

    No documentation available.

  6. equal :: LuaError e => StackIndex -> StackIndex -> LuaE e Bool

    hslua-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.

  7. equalFilePath :: FilePath -> FilePath -> Bool

    rio 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:/")
    

  8. eqBy :: (Vector v a, Vector v b) => (a -> b -> Bool) -> v a -> v b -> Bool

    rio RIO.Vector

    No documentation available.

  9. equal :: (Storable a, Eq a) => Vector a -> Vector a -> Bool

    storablevector Data.StorableVector.Lazy

    No documentation available.

  10. equal :: (Size size, Storable a, Eq a) => Vector size a -> Vector size a -> Bool

    storablevector Data.StorableVector.Lazy.Typed

    No documentation available.

Page 69 of many | Previous | Next