Hoogle Search
Within Stackage Nightly 2025-10-08 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
defaultSettings :: Text -> Settingsbugsnag Data.Bugsnag.Settings No documentation available.
-
A CharSet is an efficient representation of a set of Char values designed for fast membership tests. As an example build isAlpha will create a set of alphabetic characters. We can then use member on the generated set to efficiently test if a given Char represents an alphabetic character. Designed to be imported qualified:
import Data.CharSet (CharSet) import qualified Data.CharSet as CharSet
-
charset Data.CharSet Stored as a (possibly negated) IntSet and a fast set used for the head byte. The set of valid (possibly negated) head bytes is stored unboxed as a 32-byte bytestring-based lookup table.
CharSet :: Bool -> ByteSet -> IntSet -> CharSetcharset Data.CharSet No documentation available.
fromCharSet :: CharSet -> (Bool, IntSet)charset Data.CharSet No documentation available.
isSubsetOf :: CharSet -> CharSet -> Boolcharset Data.CharSet No documentation available.
toCharSet :: IntSet -> CharSetcharset Data.CharSet No documentation available.
-
Fast set membership tests for byte values. The set representation is unboxed for efficiency and uses one bit per byte to represent the presence or absence of a byte in the set. This is a fairly minimal API. You probably want to use CharSet.
-
charset Data.CharSet.ByteSet No documentation available.
ByteSet :: ByteString -> ByteSetcharset Data.CharSet.ByteSet No documentation available.