Hoogle Search

Within LTS Haskell 24.37 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

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

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

  3. equals :: Doc

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

    No documentation available.

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

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

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

    rio RIO.Vector

    No documentation available.

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

    storablevector Data.StorableVector.Lazy

    No documentation available.

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

    storablevector Data.StorableVector.Lazy.Typed

    No documentation available.

  9. eqTriangle :: (InSpace V2 n t, TrailLike t) => n -> t

    diagrams-lib Diagrams.TwoD

    A synonym for triangle, provided for backwards compatibility.

  10. eqTriangle :: (InSpace V2 n t, TrailLike t) => n -> t

    diagrams-lib Diagrams.TwoD.Shapes

    A synonym for triangle, provided for backwards compatibility.

Page 69 of many | Previous | Next