Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. equateAll :: MonadEquiv c v d m => [v] -> m ()

    equivalence Data.Equivalence.Monad

    This function equates the element in the given list. That is, it unions the equivalence classes of the elements and combines their descriptor.

  2. equivalent :: MonadEquiv c v d m => v -> v -> m Bool

    equivalence Data.Equivalence.Monad

    This function decides whether the two given elements are equivalent in the current equivalence relation.

  3. equate :: forall (m :: Type -> Type) a s c . (Monad m, Applicative m, Ord a) => Equiv s c a -> a -> a -> STT s m ()

    equivalence Data.Equivalence.STT

    This function equates the two given elements. That is, it unions the equivalence classes of the two elements and combines their descriptor.

  4. equateAll :: forall (m :: Type -> Type) a s c . (Monad m, Applicative m, Ord a) => Equiv s c a -> [a] -> STT s m ()

    equivalence Data.Equivalence.STT

    This function equates the element in the given list. That is, it unions the equivalence classes of the elements and combines their descriptor.

  5. equivalent :: forall (m :: Type -> Type) a s c . (Monad m, Applicative m, Ord a) => Equiv s c a -> a -> a -> STT s m Bool

    equivalence Data.Equivalence.STT

    This function decides whether the two given elements are in the same equivalence class according to the given equivalence relation representation.

  6. equipment :: Fake Text

    fakedata Faker.Appliance

    No documentation available.

  7. equalFilePath :: RawFilePath -> RawFilePath -> Bool

    filepath-bytestring System.FilePath.Posix.ByteString

    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
    equalFilePath "foo" "foo/"
    not (equalFilePath "foo" "/foo")
    Posix:   not (equalFilePath "foo" "FOO")
    Windows: equalFilePath "foo" "FOO"
    Windows: not (equalFilePath "C:" "C:/")
    

  8. equalFilePath :: RawFilePath -> RawFilePath -> Bool

    filepath-bytestring System.FilePath.Windows.ByteString

    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
    equalFilePath "foo" "foo/"
    not (equalFilePath "foo" "/foo")
    Posix:   not (equalFilePath "foo" "FOO")
    Windows: equalFilePath "foo" "FOO"
    Windows: not (equalFilePath "C:" "C:/")
    

  9. equals :: Parser Text

    graphql Language.GraphQL.AST.Lexer

    Parser for "=".

  10. eqLaws :: (Eq a, Show a) => Gen a -> Laws

    hedgehog-classes Hedgehog.Classes

    Tests the following Eq laws:

    • Reflexivity x == xTrue
    • Symmetry x == yy == x
    • Transitivity x == y && y == zx == z
    • Negation x /= ynot (x == y)

Page 112 of many | Previous | Next