Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
writeWideCharArray# :: MutableByteArray# d -> Int# -> Char# -> State# d -> State# dbase GHC.Exts Write a 32-bit character; offset in 4-byte words. Warning: this can fail with an unchecked exception.
writeWideCharOffAddr# :: Addr# -> Int# -> Char# -> State# d -> State# dbase GHC.Exts Write a 32-bit character; offset in 4-byte words. On some platforms, the access may fail for an insufficiently aligned Addr#. Warning: this can fail with an unchecked exception.
writeWord8ArrayAsWideChar# :: MutableByteArray# d -> Int# -> Char# -> State# d -> State# dbase GHC.Exts Write a 32-bit character; offset in bytes. Warning: this can fail with an unchecked exception.
writeWord8OffAddrAsWideChar# :: Addr# -> Int# -> Char# -> State# d -> State# dbase GHC.Exts Write a 32-bit character; offset in bytes. Warning: this can fail with an unchecked exception.
divideDouble :: Double -> Double -> Doublebase GHC.Float No documentation available.
divideFloat :: Float -> Float -> Floatbase GHC.Float No documentation available.
DecidedLazy :: DecidedStrictnessbase GHC.Generics No documentation available.
DecidedStrict :: DecidedStrictnessbase GHC.Generics No documentation available.
-
base GHC.Generics The strictness that GHC infers for a field during compilation. Whereas there are nine different combinations of SourceUnpackedness and SourceStrictness, the strictness that GHC decides will ultimately be one of lazy, strict, or unpacked. What GHC decides is affected both by what the user writes in the source code and by GHC flags. As an example, consider this data type:
data E = ExampleConstructor {-# UNPACK #-} !Int !Int Int- If compiled without optimization or other language extensions, then the fields of ExampleConstructor will have DecidedStrict, DecidedStrict, and DecidedLazy, respectively.
- If compiled with -XStrictData enabled, then the fields will have DecidedStrict, DecidedStrict, and DecidedStrict, respectively.
- If compiled with -O2 enabled, then the fields will have DecidedUnpack, DecidedStrict, and DecidedLazy, respectively.
DecidedUnpack :: DecidedStrictnessbase GHC.Generics No documentation available.