Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. constructObjectPropertyEnum :: (Enum a, BoxedEnum a) => String -> a -> IO (GValueConstruct o)

    haskell-gi-base Data.GI.Base.Properties

    No documentation available.

  2. getObjectPropertyEnum :: (GObject a, Enum b, BoxedEnum b) => a -> String -> IO b

    haskell-gi-base Data.GI.Base.Properties

    No documentation available.

  3. setObjectPropertyEnum :: (GObject a, Enum b, BoxedEnum b) => a -> String -> b -> IO ()

    haskell-gi-base Data.GI.Base.Properties

    No documentation available.

  4. class Enum a

    haskell-gi-base Data.GI.Base.ShortPrelude

    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. fromEnum :: Enum a => a -> Int

    haskell-gi-base Data.GI.Base.ShortPrelude

    Convert to an Int. It is implementation-dependent what fromEnum returns when applied to a value that is too large to fit in an Int.

  6. toEnum :: Enum a => Int -> a

    haskell-gi-base Data.GI.Base.ShortPrelude

    Convert from an Int.

  7. getContextDiffNumbered :: Eq a => Maybe Int -> [Numbered a] -> [Numbered a] -> ContextDiff (Numbered a)

    Diff Data.Algorithm.DiffContext

    No documentation available.

  8. unNumberContextDiff :: ContextDiff (Numbered a) -> ContextDiff a

    Diff Data.Algorithm.DiffContext

    If for some reason you need the line numbers stripped from the result of getContextDiff for backwards compatibility.

  9. unnumber :: Numbered a -> a

    Diff Data.Algorithm.DiffContext

    No documentation available.

  10. lrNumbers :: LineRange -> (LineNo, LineNo)

    Diff Data.Algorithm.DiffOutput

    No documentation available.

Page 173 of many | Previous | Next