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. enumerate :: forall (f :: Type -> Type) . (Enumerable a, Typeable f, Sized f) => Shared f a

    testing-feat Test.Feat.Class

    No documentation available.

  2. enumFromThenTo' :: (Ord a, Enum a, Num a) => a -> a -> a -> Pattern a

    tidal-core Sound.Tidal.ParseBP

    No documentation available.

  3. enumFromTo' :: (Ord a, Enum a) => a -> a -> Pattern a

    tidal-core Sound.Tidal.ParseBP

    No documentation available.

  4. enumerate :: [a] -> [(Int, a)]

    tidal-core Sound.Tidal.Utils

    enumerate a list of things

    >>> enumerate ["foo","bar","baz"]
    [(1,"foo"), (2,"bar"), (3,"baz")]
    

  5. enumOrdinal :: forall (n :: Nat) . SNat n -> [Ordinal n]

    type-natural Data.Type.Ordinal

    Enumerate all Ordinals less than n.

  6. enumFromStepN :: forall a (m :: Type -> Type) . (Num a, Monad m) => a -> a -> Int -> Stream m a

    vector-stream Data.Stream.Monadic

    Yield a Stream of the given length containing the values x, x+y, x+y+y etc.

  7. enumFromThenTo :: forall a (m :: Type -> Type) . (Enum a, Monad m) => a -> a -> a -> Stream m a

    vector-stream Data.Stream.Monadic

    Enumerate values with a given step. WARNING: This operation is very inefficient. If at all possible, use enumFromStepN instead.

  8. enumFromTo :: forall a (m :: Type -> Type) . (Enum a, Monad m) => a -> a -> Stream m a

    vector-stream Data.Stream.Monadic

    Enumerate values WARNING: This operation can be very inefficient. If at all possible, use enumFromStepN instead.

  9. enumOptSty :: Set Text -> OptionStyle (BaseStringType Unicode)

    what4 What4.Config

    A configuration style for options that must be one of a fixed set of text values

  10. enumString :: CaseSensitive -> [(Text, a)] -> String a

    yaml-unscrambler YamlUnscrambler

    Look the string up as a key in the provided dictionary.

Page 75 of many | Previous | Next