Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
transformDistance :: Matrix -> (Double, Double) -> (Double, Double)cairo Graphics.Rendering.Cairo.Matrix No documentation available.
transformPoint :: Matrix -> (Double, Double) -> (Double, Double)cairo Graphics.Rendering.Cairo.Matrix No documentation available.
genSeperateFor :: Eq b => Gen b -> [a] -> Gen [(b, a)]genvalidity-containers Data.GenValidity.Set No documentation available.
genSeperateForNE :: Eq b => Gen b -> NonEmpty a -> Gen (NonEmpty (b, a))genvalidity-containers Data.GenValidity.Set No documentation available.
genValidSeperateFor :: (GenValid b, Eq b) => [a] -> Gen [(b, a)]genvalidity-containers Data.GenValidity.Set No documentation available.
genValidSeperateForNE :: (GenValid b, Eq b) => NonEmpty a -> Gen (NonEmpty (b, a))genvalidity-containers Data.GenValidity.Set No documentation available.
BlockedOnForeignCall :: BlockReasonghc-internal GHC.Internal.Conc.Sync currently in a foreign call
utf8DecodeForeignPtr :: ForeignPtr Word8 -> Int -> Int -> [Char]ghc-internal GHC.Internal.Encoding.UTF8 No documentation available.
-
ghc-internal GHC.Internal.Float No documentation available.
addForeignPtrFinalizer :: ForeignPtr a -> IO () -> IO ()ghc-internal GHC.Internal.Foreign.Concurrent This function adds a finalizer to the given ForeignPtr. The finalizer will run before all other finalizers for the same object which have already been registered. This is a variant of addForeignPtrFinalizer, where the finalizer is an arbitrary IO action. When it is invoked, the finalizer will run in a new thread. NB. Be very careful with these finalizers. One common trap is that if a finalizer references another finalized value, it does not prevent that value from being finalized. In particular, Handles are finalized objects, so a finalizer should not refer to a Handle (including stdout, stdin, or stderr).