Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. _networkManagerDeviceSerialNumber :: NetworkManagerDevice -> Maybe (Val Text)

    stratosphere Stratosphere.Resources.NetworkManagerDevice

    No documentation available.

  2. nmdSerialNumber :: Lens' NetworkManagerDevice (Maybe (Val Text))

    stratosphere Stratosphere.Resources.NetworkManagerDevice

    http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber

  3. _redshiftClusterNumberOfNodes :: RedshiftCluster -> Maybe (Val Integer)

    stratosphere Stratosphere.Resources.RedshiftCluster

    No documentation available.

  4. rcNumberOfNodes :: Lens' RedshiftCluster (Maybe (Val Integer))

    stratosphere Stratosphere.Resources.RedshiftCluster

    http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype

  5. class Enum a => Enumerable a

    streamly Streamly.Internal.Data.Stream.IsStream

    Types that can be enumerated as a stream. The operations in this type class are equivalent to those in the Enum type class, except that these generate a stream instead of a list. Use the functions in Streamly.Internal.Data.Stream.Enumeration module to define new instances.

  6. class Enum a => Enumerable a

    streamly Streamly.Internal.Data.Stream.IsStream

    Types that can be enumerated as a stream. The operations in this type class are equivalent to those in the Enum type class, except that these generate a stream instead of a list. Use the functions in Streamly.Internal.Data.Stream.Enumeration module to define new instances.

  7. enumerate :: forall t (m :: Type -> Type) a . (IsStream t, Monad m, Bounded a, Enumerable a) => t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    enumerate = enumerateFrom minBound
    
    Enumerate a Bounded type from its minBound to maxBound

  8. enumerate :: forall t (m :: Type -> Type) a . (IsStream t, Monad m, Bounded a, Enumerable a) => t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    enumerate = enumerateFrom minBound
    
    Enumerate a Bounded type from its minBound to maxBound

  9. enumerateFrom :: forall t (m :: Type -> Type) . (Enumerable a, IsStream t, Monad m) => a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    enumerateFrom from generates a stream starting with the element from, enumerating up to maxBound when the type is Bounded or generating an infinite stream when the type is not Bounded.

    >>> Stream.toList $ Stream.take 4 $ Stream.enumerateFrom (0 :: Int)
    [0,1,2,3]
    
    For Fractional types, enumeration is numerically stable. However, no overflow or underflow checks are performed.
    >>> Stream.toList $ Stream.take 4 $ Stream.enumerateFrom 1.1
    [1.1,2.1,3.1,4.1]
    

  10. enumerateFrom :: forall t (m :: Type -> Type) . (Enumerable a, IsStream t, Monad m) => a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    enumerateFrom from generates a stream starting with the element from, enumerating up to maxBound when the type is Bounded or generating an infinite stream when the type is not Bounded.

    >>> Stream.toList $ Stream.take 4 $ Stream.enumerateFrom (0 :: Int)
    [0,1,2,3]
    
    For Fractional types, enumeration is numerically stable. However, no overflow or underflow checks are performed.
    >>> Stream.toList $ Stream.take 4 $ Stream.enumerateFrom 1.1
    [1.1,2.1,3.1,4.1]
    

Page 535 of many | Previous | Next