Hoogle Search
Within LTS Haskell 24.10 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
decodeUtf8BytesIso8601Zoneless :: Bytes -> Maybe Datetimechronos Chronos Decode an ISO-8601-encode datetime.
decodeUtf8BytesIso8601ZonelessSpaced :: Bytes -> Maybe Datetimechronos Chronos Decode a datetime that is nearly ISO-8601-encoded but uses a space instead of a T to separate the date and the time. For example: 2022-10-29 14:00:05.
decodeUtf8_YmdHMS :: DatetimeFormat -> ByteString -> Maybe Datetimechronos Chronos Decode a Year/Month/Day,Hour/Minute/Second-encoded Datetime from a ByteString.
decodeUtf8_YmdHMS_opt_S :: DatetimeFormat -> ByteString -> Maybe Datetimechronos Chronos Parses text that is formatted as either of the following:
%H:%M
%H:%M:%S
decodeUtf8C :: forall (m :: Type -> Type) . MonadThrow m => ConduitT ByteString Text m ()classy-prelude-yesod ClassyPrelude.Yesod Decode a stream of binary data as UTF8.
decodeUtf8LenientC :: forall (m :: Type -> Type) . Monad m => ConduitT ByteString Text m ()classy-prelude-yesod ClassyPrelude.Yesod Decode a stream of binary data as UTF8, replacing any invalid bytes with the Unicode replacement character.
decodeUtf8With :: MonadUnliftIO m => OnDecodeError -> InputStream ByteString -> m (InputStream Text)unliftio-streams UnliftIO.Streams.Text No documentation available.
streamDecodeUtf8 :: ByteString -> Decodingtext Data.Text.Encoding Decode, in a stream oriented way, a ByteString containing UTF-8 encoded text that is known to be valid. If the input contains any invalid UTF-8 data, an exception will be thrown (either by this function or a continuation) that cannot be caught in pure code. For more control over the handling of invalid data, use streamDecodeUtf8With.
streamDecodeUtf8With :: OnDecodeError -> ByteString -> Decodingtext Data.Text.Encoding Decode, in a stream oriented way, a lazy ByteString containing UTF-8 encoded text.
-
streamly-core Streamly.Internal.Unicode.Stream Pre-release