Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. data KinesisFirehoseElasticsearchS3BackupMode

    stratosphere Stratosphere.Types

    See: http://docs.aws.amazon.com/firehose/latest/APIReference/API_ElasticsearchDestinationConfiguration.html

  2. writeLastN :: forall a (m :: Type -> Type) . (Storable a, Unbox a, MonadIO m) => Int -> Fold m a (Array a)

    streamly Streamly.Data.Array.Foreign

    writeLastN n folds a maximum of n elements from the end of the input stream to an Array.

  3. dropLast :: Int -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Drop n elements at the end of the stream. O(n) space, where n is the number elements dropped. Unimplemented

  4. dropLastInterval :: Int -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Drop time interval i seconds at the end of the stream. O(n) space, where n is the number elements dropped. Unimplemented

  5. dropWhileLast :: (a -> Bool) -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Drop all consecutive elements at the end of the stream for which the predicate is true. O(n) space, where n is the number elements dropped. Unimplemented

  6. takeLast :: Int -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Take n elements at the end of the stream. O(n) space, where n is the number elements taken. Unimplemented

  7. takeLastInterval :: Double -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Take time interval i seconds at the end of the stream. O(n) space, where n is the number elements taken. Unimplemented

  8. takeWhileLast :: (a -> Bool) -> t m a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Take all consecutive elements at the end of the stream for which the predicate is true. O(n) space, where n is the number elements taken. Unimplemented

  9. dropLastInterval :: forall (m :: Type -> Type) a . Int -> Stream m a -> Stream m a

    streamly Streamly.Internal.Data.Stream.Prelude

    Drop time interval i seconds at the end of the stream. O(n) space, where n is the number elements dropped. Unimplemented

  10. takeLastInterval :: forall (m :: Type -> Type) a . Double -> Stream m a -> Stream m a

    streamly Streamly.Internal.Data.Stream.Prelude

    Take time interval i seconds at the end of the stream. O(n) space, where n is the number elements taken. Unimplemented

Page 218 of many | Previous | Next