Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. equals :: forall (n :: Nat) (m :: Nat) . Finite n -> Finite m -> Bool

    finite-typelits Data.Finite

    Test two different types of finite numbers for equality.

  2. equals :: forall (n :: Nat) (m :: Nat) a . Eq a => Finite a n -> Finite a m -> Bool

    finite-typelits Data.Finite.Integral

    Test two different types of finite numbers for equality.

  3. equals :: Applicative m => m Doc

    graphviz Data.GraphViz.Printing

    The document equals contains an equal sign, "=".

  4. equityAccountRegex :: Regexp

    hledger-lib Hledger.Data.AccountName

    No documentation available.

  5. equivalent :: (Eq a, C a) => T a -> T a -> Bool

    numeric-prelude MathObj.LaurentPolynomial

    Two polynomials may be stored differently. This function checks whether two values of type LaurentPolynomial actually represent the same polynomial.

  6. equal :: (Eq a, C a) => [a] -> [a] -> Bool

    numeric-prelude MathObj.Polynomial.Core

    No documentation available.

  7. equalApprox :: Basis -> Exponent -> T -> T -> Bool

    numeric-prelude Number.Positional

    No documentation available.

  8. equal :: Eq a => a -> T a -> T a -> Bool

    numeric-prelude Number.ResidueClass.Func

    No documentation available.

  9. eqF :: forall (a :: k) . EqF f => f a -> f a -> Bool

    parameterized-utils Data.Parameterized.Classes

    No documentation available.

  10. equalFilePath :: FilePath -> FilePath -> Bool

    shake Development.Shake.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:/")
    

Page 96 of many | Previous | Next