Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. EnumFrom :: l -> Exp l -> Exp l

    haskell-src-exts Language.Haskell.Exts.Syntax

    unbounded arithmetic sequence, incrementing by 1: [from ..]

  2. EnumFromThen :: l -> Exp l -> Exp l -> Exp l

    haskell-src-exts Language.Haskell.Exts.Syntax

    unbounded arithmetic sequence, with first two elements given [from, then ..]

  3. EnumFromThenTo :: l -> Exp l -> Exp l -> Exp l -> Exp l

    haskell-src-exts Language.Haskell.Exts.Syntax

    bounded arithmetic sequence, with first two elements given [from, then .. to]

  4. EnumFromTo :: l -> Exp l -> Exp l -> Exp l

    haskell-src-exts Language.Haskell.Exts.Syntax

    bounded arithmetic sequence, incrementing by 1 [from .. to]

  5. TypeNumber :: Type

    hslua-core HsLua.Core

    type of Lua numbers. See Number

  6. fromNumArgs :: NumArgs -> CInt

    hslua-core HsLua.Core

    No documentation available.

  7. fromNumResults :: NumResults -> CInt

    hslua-core HsLua.Core

    No documentation available.

  8. isnumber :: StackIndex -> LuaE e Bool

    hslua-core HsLua.Core

    Returns True if the value at the given index is a number or a string convertible to a number, and False otherwise. Wraps lua_isnumber.

  9. pushnumber :: Number -> LuaE e ()

    hslua-core HsLua.Core

    Pushes a float with the given value onto the stack. Wraps lua_pushnumber.

  10. tonumber :: StackIndex -> LuaE e (Maybe Number)

    hslua-core HsLua.Core

    Converts the Lua value at the given index to a Number. The Lua value must be a number or a string convertible to a number; otherwise, tonumber returns Nothing. Wraps lua_tonumberx. See also lua_tonumber.

Page 187 of many | Previous | Next