Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. isboolean :: StackIndex -> LuaE e Bool

    hslua-core HsLua.Core

    Returns True if the value at the given index is a boolean, and False otherwise. Wraps lua_isboolean.

  2. pushboolean :: Bool -> LuaE e ()

    hslua-core HsLua.Core

    Pushes a boolean value with the given value onto the stack. This functions wraps lua_pushboolean.

  3. toboolean :: StackIndex -> LuaE e Bool

    hslua-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.

  4. newtype LuaBool

    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.

  5. LuaBool :: CInt -> LuaBool

    hslua-core HsLua.Core.Types

    No documentation available.

  6. TypeBoolean :: Type

    hslua-core HsLua.Core.Types

    type of Lua booleans

  7. fromLuaBool :: LuaBool -> Bool

    hslua-core HsLua.Core.Types

    Convert a LuaBool to a Haskell Bool.

  8. toLuaBool :: Bool -> LuaBool

    hslua-core HsLua.Core.Types

    Convert a Haskell Bool to a LuaBool.

  9. array_bool :: TypeInfo

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  10. array_boolOid :: Oid

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

Page 79 of many | Previous | Next