Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
haskell-gi-base Data.GI.Base.CallStack CallStacks are a lightweight method of obtaining a partial call-stack at any point in the program. A function can request its call-site with the HasCallStack constraint. For example, we can define
putStrLnWithCallStack :: HasCallStack => String -> IO ()
as a variant of putStrLn that will get its call-site and print it, along with the string given as argument. We can access the call-stack inside putStrLnWithCallStack with callStack.>>> :{ putStrLnWithCallStack :: HasCallStack => String -> IO () putStrLnWithCallStack msg = do putStrLn msg putStrLn (prettyCallStack callStack) :}Thus, if we call putStrLnWithCallStack we will get a formatted call-stack alongside our string.>>> putStrLnWithCallStack "hello" hello CallStack (from HasCallStack): putStrLnWithCallStack, called at <interactive>:... in interactive:Ghci...
GHC solves HasCallStack constraints in three steps:- If there is a CallStack in scope -- i.e. the enclosing function has a HasCallStack constraint -- GHC will append the new call-site to the existing CallStack.
- If there is no CallStack in scope -- e.g. in the GHCi session above -- and the enclosing definition does not have an explicit type signature, GHC will infer a HasCallStack constraint for the enclosing definition (subject to the monomorphism restriction).
- If there is no CallStack in scope and the enclosing definition has an explicit type signature, GHC will solve the HasCallStack constraint for the singleton CallStack containing just the current call-site.
callStack :: HasCallStack => CallStackhaskell-gi-base Data.GI.Base.CallStack Return the current CallStack. Does *not* include the call-site of callStack.
prettyCallStack :: CallStack -> Stringhaskell-gi-base Data.GI.Base.CallStack Pretty print a CallStack.
gobjectInstallCIntProperty :: DerivedGObject o => GObjectClass -> CIntPropertyInfo o -> IO ()haskell-gi-base Data.GI.Base.GObject Add a CInt-valued property to the given object class.
gobjectInstallCStringProperty :: DerivedGObject o => GObjectClass -> CStringPropertyInfo o -> IO ()haskell-gi-base Data.GI.Base.GObject Add a CString-valued property to the given object class.
-
haskell-gi-base Data.GI.Base.GObject Add a `${type gboolean}`-valued property to the given object class.
gobjectInstallProperty :: DerivedGObject o => GObjectClass -> PropertyInfo o a -> IO ()haskell-gi-base Data.GI.Base.GObject Add a Haskell object-valued property to the given object class.
type family
SignalList a :: [(Symbol, Type)]haskell-gi-base Data.GI.Base.Overloading The list of signals defined for a given type. Each element of the list is a tuple, with the first element of the tuple the name of the signal, and the second the type encoding the information of the signal. This type will be an instance of SignalInfo.
constructObjectPropertyCallback :: String -> FunPtr b -> IO (GValueConstruct o)haskell-gi-base Data.GI.Base.Properties No documentation available.
getObjectPropertyCallback :: GObject a => a -> String -> (FunPtr b -> c) -> IO (Maybe c)haskell-gi-base Data.GI.Base.Properties No documentation available.