Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. class Enum a

    enumset Data.FlagSet

    No documentation available.

  2. class Enum a

    foundation Foundation

    Class Enum defines operations on sequentially ordered types. The enumFrom... methods are used in Haskell's translation of arithmetic sequences. Instances of Enum may be derived for any enumeration type (types whose constructors have no fields). The nullary constructors are assumed to be numbered left-to-right by fromEnum from 0 through n-1. See Chapter 10 of the Haskell Report for more details. For any type that is an instance of class Bounded as well as Enum, the following should hold:

    enumFrom     x   = enumFromTo     x maxBound
    enumFromThen x y = enumFromThenTo x y bound
    where
    bound | fromEnum y >= fromEnum x = maxBound
    | otherwise                = minBound
    

  3. module Generic.Data.Internal.Enum

    Generic deriving for Enum, Bounded and Ix.

    Warning

    This is an internal module: it is not subject to any versioning policy, breaking changes can happen at any time. If something here seems useful, please report it or create a pull request to export it from an external module.

  4. class Enum a

    prelude-compat Prelude2010

    Class Enum defines operations on sequentially ordered types. The enumFrom... methods are used in Haskell's translation of arithmetic sequences. Instances of Enum may be derived for any enumeration type (types whose constructors have no fields). The nullary constructors are assumed to be numbered left-to-right by fromEnum from 0 through n-1. See Chapter 10 of the Haskell Report for more details. For any type that is an instance of class Bounded as well as Enum, the following should hold:

    enumFrom     x   = enumFromTo     x maxBound
    enumFromThen x y = enumFromThenTo x y bound
    where
    bound | fromEnum y >= fromEnum x = maxBound
    | otherwise                = minBound
    

  5. module Rebase.GHC.Enum

    No documentation available.

  6. class Enum a

    rebase Rebase.Prelude

    Class Enum defines operations on sequentially ordered types. The enumFrom... methods are used in Haskell's translation of arithmetic sequences. Instances of Enum may be derived for any enumeration type (types whose constructors have no fields). The nullary constructors are assumed to be numbered left-to-right by fromEnum from 0 through n-1. See Chapter 10 of the Haskell Report for more details. For any type that is an instance of class Bounded as well as Enum, the following should hold:

    enumFrom     x   = enumFromTo     x maxBound
    enumFromThen x y = enumFromThenTo x y bound
    where
    bound | fromEnum y >= fromEnum x = maxBound
    | otherwise                = minBound
    

  7. Enum :: TypeName -> [TypeName] -> Maybe Text -> Vector Text -> Schema

    avro Data.Avro

    No documentation available.

  8. Enum :: ReadSchema -> Int -> Text -> Value

    avro Data.Avro.Encoding.FromAvro

    No documentation available.

  9. Enum :: TypeName -> [TypeName] -> Maybe Text -> Vector Text -> ReadSchema

    avro Data.Avro.Schema.ReadSchema

    No documentation available.

  10. Enum :: TypeName -> [TypeName] -> Maybe Text -> Vector Text -> Schema

    avro Data.Avro.Schema.Schema

    No documentation available.

Page 5 of many | Previous | Next