Hoogle Search

Within LTS Haskell 24.60 (ghc-9.10.3)

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

  1. decodeUtf8With :: OnDecodeError -> ByteString -> Text

    incipit-base Incipit.String.Reexport

    Decode a ByteString containing UTF-8 encoded text. Surrogate code points in replacement character returned by OnDecodeError will be automatically remapped to the replacement char U+FFFD.

  2. decodeUtf8' :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    Decode a UTF-8 encoded bytestream to a stream of Unicode characters. The function throws an error if an invalid codepoint is encountered.

  3. decodeUtf8Chunks :: forall (m :: Type -> Type) . MonadIO m => Stream m (Array Word8) -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    Like decodeUtf8 but for a chunked stream. It may be slightly faster than flattening the stream and then decoding with decodeUtf8.

  4. decodeUtf8Chunks' :: forall (m :: Type -> Type) . MonadIO m => Stream m (Array Word8) -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    Like 'decodeUtf8'' but for a chunked stream. It may be slightly faster than flattening the stream and then decoding with 'decodeUtf8''.

  5. decodeUtf8Chunks_ :: forall (m :: Type -> Type) . MonadIO m => Stream m (Array Word8) -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    Like decodeUtf8_ but for a chunked stream. It may be slightly faster than flattening the stream and then decoding with decodeUtf8_.

  6. decodeUtf8D :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    No documentation available.

  7. decodeUtf8D' :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    No documentation available.

  8. decodeUtf8D_ :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m Char

    streamly-core Streamly.Internal.Unicode.Stream

    No documentation available.

  9. decodeUtf8Either :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m (Either DecodeError Char)

    streamly-core Streamly.Internal.Unicode.Stream

    Pre-release

  10. decodeUtf8EitherD :: forall (m :: Type -> Type) . Monad m => Stream m Word8 -> Stream m (Either DecodeError Char)

    streamly-core Streamly.Internal.Unicode.Stream

    No documentation available.

Page 8 of many | Previous | Next