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.
integralEnumFromTo :: Integral a => a -> a -> [a]ghc-internal GHC.Internal.Real No documentation available.
numericEnumFrom :: Fractional a => a -> [a]ghc-internal GHC.Internal.Real No documentation available.
numericEnumFromThen :: Fractional a => a -> a -> [a]ghc-internal GHC.Internal.Real No documentation available.
numericEnumFromThenTo :: (Ord a, Fractional a) => a -> a -> a -> [a]ghc-internal GHC.Internal.Real No documentation available.
numericEnumFromTo :: (Ord a, Fractional a) => a -> a -> [a]ghc-internal GHC.Internal.Real No documentation available.
parseEnum :: (HasCallStack, MonadIO m) => GType -> Maybe Text -> Bool -> m (Bool, Int32, Text)gi-pango GI.Pango.Functions Deprecated: (Since version 1.38)
senumFromN :: Num e => e -> Sz1 -> Vector DS emassiv 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.
senumFromStepN :: Num e => e -> e -> Sz1 -> Vector DS emassiv 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.
_schemaEnum :: Schema -> Maybe [Value]openapi3 Data.OpenApi No documentation available.
_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.