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.
_networkManagerDeviceSerialNumber :: NetworkManagerDevice -> Maybe (Val Text)stratosphere Stratosphere.Resources.NetworkManagerDevice No documentation available.
nmdSerialNumber :: Lens' NetworkManagerDevice (Maybe (Val Text))stratosphere Stratosphere.Resources.NetworkManagerDevice _redshiftClusterNumberOfNodes :: RedshiftCluster -> Maybe (Val Integer)stratosphere Stratosphere.Resources.RedshiftCluster No documentation available.
rcNumberOfNodes :: Lens' RedshiftCluster (Maybe (Val Integer))stratosphere Stratosphere.Resources.RedshiftCluster -
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.
-
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.
-
streamly Streamly.Internal.Data.Stream.IsStream enumerate = enumerateFrom minBound
Enumerate a Bounded type from its minBound to maxBound -
streamly Streamly.Internal.Data.Stream.IsStream enumerate = enumerateFrom minBound
Enumerate a Bounded type from its minBound to maxBound enumerateFrom :: forall t (m :: Type -> Type) . (Enumerable a, IsStream t, Monad m) => a -> t m astreamly 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]
enumerateFrom :: forall t (m :: Type -> Type) . (Enumerable a, IsStream t, Monad m) => a -> t m astreamly 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]