Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. enumerate :: [String] -> String

    bibtex Text.BibTeX.Format

    No documentation available.

  2. c'GLFW_INVALID_ENUM :: Num a => a

    bindings-GLFW Bindings.GLFW

    No documentation available.

  3. c'GLFW_KEY_NUM_LOCK :: Num a => a

    bindings-GLFW Bindings.GLFW

    No documentation available.

  4. c'GLFW_MOD_NUM_LOCK :: Num a => a

    bindings-GLFW Bindings.GLFW

    No documentation available.

  5. enumerateExample :: ([(Int, String)], ())

    bluefin-internal Bluefin.Internal.Examples

    No documentation available.

  6. device_modelNumber :: Device -> Maybe Text

    bugsnag-hs Network.Bugsnag

    The model number of the device.

  7. stackFrame_columnNumber :: StackFrame -> Maybe Int

    bugsnag-hs Network.Bugsnag

    The column of the file that this frame of the stack was in.

  8. stackFrame_lineNumber :: StackFrame -> Int

    bugsnag-hs Network.Bugsnag

    The line of the file that this frame of the stack was in.

  9. class Enum a

    cabal-install-solver Distribution.Solver.Compat.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
    

  10. enumFrom :: Enum a => a -> [a]

    cabal-install-solver Distribution.Solver.Compat.Prelude

    Used in Haskell's translation of [n..] with [n..] = enumFrom n, a possible implementation being enumFrom n = n : enumFrom (succ n).

    Examples

    • enumFrom 4 :: [Integer] = [4,5,6,7,...]
    • enumFrom 6 :: [Int] = [6,7,8,9,...,maxBound ::
      Int]

Page 374 of many | Previous | Next