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.
EnumFrom :: l -> Exp l -> Exp lhaskell-src-exts Language.Haskell.Exts.Syntax unbounded arithmetic sequence, incrementing by 1: [from ..]
EnumFromThen :: l -> Exp l -> Exp l -> Exp lhaskell-src-exts Language.Haskell.Exts.Syntax unbounded arithmetic sequence, with first two elements given [from, then ..]
EnumFromThenTo :: l -> Exp l -> Exp l -> Exp l -> Exp lhaskell-src-exts Language.Haskell.Exts.Syntax bounded arithmetic sequence, with first two elements given [from, then .. to]
EnumFromTo :: l -> Exp l -> Exp l -> Exp lhaskell-src-exts Language.Haskell.Exts.Syntax bounded arithmetic sequence, incrementing by 1 [from .. to]
-
hslua-core HsLua.Core type of Lua numbers. See Number
fromNumArgs :: NumArgs -> CInthslua-core HsLua.Core No documentation available.
fromNumResults :: NumResults -> CInthslua-core HsLua.Core No documentation available.
isnumber :: StackIndex -> LuaE e Boolhslua-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.
pushnumber :: Number -> LuaE e ()hslua-core HsLua.Core Pushes a float with the given value onto the stack. Wraps lua_pushnumber.
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.