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-src-exts Language.Haskell.Exts No documentation available.
-
haskell-src-exts Language.Haskell.Exts ]
-
haskell-src-exts Language.Haskell.Exts.Lexer No documentation available.
-
haskell-src-exts Language.Haskell.Exts.Lexer ]
RPSeq :: l -> [RPat l] -> RPat lhaskell-src-exts Language.Haskell.Exts.Syntax sequence pattern, e.g. (| 1, 2, 3 |)
TyEquals :: l -> Type l -> Type l -> Type lhaskell-src-exts Language.Haskell.Exts.Syntax type equality predicate enabled by ConstraintKinds
-
haskell-src-exts Language.Haskell.Exts.Syntax A type equation as found in closed type families.
TypeEqn :: l -> Type l -> Type l -> TypeEqn lhaskell-src-exts Language.Haskell.Exts.Syntax No documentation available.
rawequal :: StackIndex -> StackIndex -> LuaE e Boolhslua-core HsLua.Core Returns True if the two values in indices idx1 and idx2 are primitively equal (that is, without calling the __eq metamethod). Otherwise returns False. Also returns False if any of the indices are not valid. Wraps lua_rawequal.
requiref :: LuaError e => Name -> CFunction -> Bool -> LuaE e ()hslua-core HsLua.Core If modname is not already present in package.loaded. calls function openf with string modname as an argument and sets the call result in package.loaded[modname], as if that function has been called through require. If glb is true, also stores the module into global modname. Leaves a copy of the module on the stack. See requirehs for a version intended to be used with Haskell actions.