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. integralEnumFromTo :: Integral a => a -> a -> [a]

    ghc-internal GHC.Internal.Real

    No documentation available.

  2. numericEnumFrom :: Fractional a => a -> [a]

    ghc-internal GHC.Internal.Real

    No documentation available.

  3. numericEnumFromThen :: Fractional a => a -> a -> [a]

    ghc-internal GHC.Internal.Real

    No documentation available.

  4. numericEnumFromThenTo :: (Ord a, Fractional a) => a -> a -> a -> [a]

    ghc-internal GHC.Internal.Real

    No documentation available.

  5. numericEnumFromTo :: (Ord a, Fractional a) => a -> a -> [a]

    ghc-internal GHC.Internal.Real

    No documentation available.

  6. parseEnum :: (HasCallStack, MonadIO m) => GType -> Maybe Text -> Bool -> m (Bool, Int32, Text)

    gi-pango GI.Pango.Functions

    Deprecated: (Since version 1.38)

  7. senumFromN :: Num e => e -> Sz1 -> Vector DS e

    massiv Data.Massiv.Vector

    O(n) - Enumerate from a starting number x exactly n times with a step 1. Related: senumFromStepN, enumFromN, enumFromStepN, rangeSize, rangeStepSize, range, rangeStep'

    Examples

    >>> senumFromN (10 :: Int) 9
    Array DS Seq (Sz1 9)
    [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ]
    
    Similar:
    • Prelude.enumFromTo Very similar to [x .. x + n - 1], except that senumFromN is faster and it only works for Num and not for Enum elements
    • Data.Vector.Generic.enumFromN Uses exactly the same implementation underneath.

  8. senumFromStepN :: Num e => e -> e -> Sz1 -> Vector DS e

    massiv Data.Massiv.Vector

    O(n) - Enumerate from a starting number x exactly n times with a custom step value dx

    Examples

    >>> senumFromStepN (5 :: Int) 2 10
    Array DS Seq (Sz1 10)
    [ 5, 7, 9, 11, 13, 15, 17, 19, 21, 23 ]
    
    Similar:
    • Prelude.enumFrom Just like take n [x, x + dx ..], except that senumFromN is faster and it only works for Num and not for Enum elements
    • Data.Vector.Generic.enumFromStepN Uses exactly the same implementation underneath.

  9. _schemaEnum :: Schema -> Maybe [Value]

    openapi3 Data.OpenApi

    No documentation available.

  10. _serverVariableEnum :: ServerVariable -> Maybe (InsOrdHashSet Text)

    openapi3 Data.OpenApi

    An enumeration of string values to be used if the substitution options are from a limited set. The array SHOULD NOT be empty.

Page 133 of many | Previous | Next