Hoogle Search
Within LTS Haskell 24.12 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
sbv Data.SBV.Trans Extract the sign/exponent/mantissa of an arbitrary precision float. The output will have eb bits in the second argument for exponent, and sb-1 bits in the third for mantissa.
pangoLayoutIterAtLastLine :: PangoLayoutIter -> IO Boolsimple-pango Graphics.Pango.Basic.LayoutObjects.PangoLayoutIter No documentation available.
pangoLayoutIterAtLastLine :: PangoLayoutIter -> IO Boolsimple-pango Graphics.Pango.Basic.LayoutObjects.PangoLayoutIter.Internal No documentation available.
-
streamly-core Streamly.Data.Array writeLastN n folds a maximum of n elements from the end of the input stream to an Array.
-
streamly-core Streamly.Internal.Data.Array writeLastN n folds a maximum of n elements from the end of the input stream to an Array.
writeLastN :: forall (m :: Type -> Type) a . MonadIO m => Int -> Fold m a (Array a)streamly-core Streamly.Internal.Data.Array.Generic No documentation available.
writeLastN :: forall (m :: Type -> Type) a . MonadIO m => Int -> Fold m a (Ring a)streamly-core Streamly.Internal.Data.Ring.Generic Note that it is not safe to return a reference to the mutable Ring using a scan as the Ring is continuously getting mutated. You could however copy out the Ring.
dropLast :: forall (m :: Type -> Type) a . Int -> Stream m a -> Stream m astreamly-core Streamly.Internal.Data.Stream Drop n elements at the end of the stream. O(n) space, where n is the number elements dropped. Unimplemented
dropWhileLast :: forall a (m :: Type -> Type) . (a -> Bool) -> Stream m a -> Stream m astreamly-core Streamly.Internal.Data.Stream 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
takeWhileLast :: forall a (m :: Type -> Type) . (a -> Bool) -> Stream m a -> Stream m astreamly-core Streamly.Internal.Data.Stream 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