Hoogle Search
Within LTS Haskell 24.26 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
gi-gobject GI.GObject.Structs.CClosure A ClosureMarshal function for use with signals with a single boolean argument.
ioBool :: IO Bool -> State# RealWorld -> (# State# RealWorld, Bool# #)ghc-bignum GHC.Num.Primitives No documentation available.
-
hslua-core HsLua.Core type of Lua booleans
isboolean :: StackIndex -> LuaE e Boolhslua-core HsLua.Core Returns True if the value at the given index is a boolean, and False otherwise. Wraps lua_isboolean.
pushboolean :: Bool -> LuaE e ()hslua-core HsLua.Core Pushes a boolean value with the given value onto the stack. This functions wraps lua_pushboolean.
toboolean :: StackIndex -> LuaE e Boolhslua-core HsLua.Core Converts the Lua value at the given index to a haskell boolean value. Like all tests in Lua, toboolean returns True for any Lua value different from false and nil; otherwise it returns False. (If you want to accept only actual boolean values, use isboolean to test the value's type.) Wraps lua_toboolean.
-
hslua-core HsLua.Core.Types Boolean value returned by a Lua C API function. This is a CInt and should be interpreted as False iff the value is 0, True otherwise.
-
hslua-core HsLua.Core.Types No documentation available.
-
hslua-core HsLua.Core.Types type of Lua booleans
fromLuaBool :: LuaBool -> Boolhslua-core HsLua.Core.Types