License | MIT |
---|---|
Maintainer | mmzk1526@outlook.com |
Portability | GHC |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Unsafe TypeIDV1
functions.
Synopsis
- unsafeGenTypeID :: MonadIO m => Text -> m TypeIDV1
- unsafeParseString :: String -> TypeIDV1
- unsafeParseText :: Text -> TypeIDV1
- unsafeParseByteString :: ByteString -> TypeIDV1
- unsafeString2ID :: IDConv a => String -> a
- unsafeText2ID :: IDConv a => Text -> a
- unsafeByteString2ID :: IDConv a => ByteString -> a
Unsafe TypeIDV1
generation
unsafeGenTypeID :: MonadIO m => Text -> m TypeIDV1 Source #
Generate a new TypeIDV1
from a prefix, but without checking if the prefix
is valid.
Unsafe decoding (TypeIDV1
-specific)
unsafeParseString :: String -> TypeIDV1 Source #
unsafeParseText :: Text -> TypeIDV1 Source #
unsafeParseByteString :: ByteString -> TypeIDV1 Source #
Parse a TypeIDV1
from its string representation as a lazy ByteString
,
but crashes when parsing fails.
Unsafe decoding (class methods)
unsafeString2ID :: IDConv a => String -> a Source #
Parse the identifier from its String
representation, but crashes when
the parsing fails.
unsafeText2ID :: IDConv a => Text -> a Source #
Parse the identifier from its string representation as a strict Text
,
but crashes when the parsing fails.
unsafeByteString2ID :: IDConv a => ByteString -> a Source #
Parse the identifier from its string representation as a lazy
ByteString
, but crashes when the parsing fails.