Copyright | © 2007–2012 Gracjan Polak 2012–2016 Ömer Sinan Ağacan 2017-2022 Albert Krewinkel |
---|---|
License | MIT |
Maintainer | Albert Krewinkel <tarleb+hslua@zeitkraut.de> |
Safe Haskell | None |
Language | Haskell2010 |
Call Haskell functions from Lua.
Synopsis
- class LuaError e => Exposable e a where
- partialApply :: StackIndex -> a -> Peek e NumResults
- toHaskellFunction :: forall e a. Exposable e a => a -> HaskellFunction e
- pushAsHaskellFunction :: forall e a. Exposable e a => a -> LuaE e ()
- registerHaskellFunction :: Exposable e a => Name -> a -> LuaE e ()
Documentation
class LuaError e => Exposable e a where Source #
Operations and functions that can be pushed to the Lua stack. This
is a helper function not intended to be used directly. Use the
wrapper instead.toHaskellFunction
partialApply :: StackIndex -> a -> Peek e NumResults Source #
Helper function, called by
. Should do a
partial application of the argument at the given index to the
underlying function. Recurses if necessary, causing further partial
applications until the operation is a easily exposable to Lua.toHaskellFunction
Instances
LuaError e => Exposable e (HaskellFunction e) Source # | |
Defined in HsLua.Class.Exposable partialApply :: StackIndex -> HaskellFunction e -> Peek e NumResults Source # | |
(Peekable a, Exposable e b) => Exposable e (a -> b) Source # | |
Defined in HsLua.Class.Exposable partialApply :: StackIndex -> (a -> b) -> Peek e NumResults Source # | |
(LuaError e, Pushable a) => Exposable e (Peek e a) Source # | |
Defined in HsLua.Class.Exposable partialApply :: StackIndex -> Peek e a -> Peek e NumResults Source # | |
(LuaError e, Pushable a) => Exposable e (LuaE e a) Source # | |
Defined in HsLua.Class.Exposable partialApply :: StackIndex -> LuaE e a -> Peek e NumResults Source # |
toHaskellFunction :: forall e a. Exposable e a => a -> HaskellFunction e Source #
Convert a Haskell function to a function type directly exposable to Lua. Any Haskell function can be converted provided that:
Any exception of type e
will be caught.
Important: this does not catch exceptions other than e
;
exception handling must be done by the Haskell function. Failure to
do so will cause the program to crash.
E.g., the following code could be used to handle an Exception
of type FooException, if that type is an instance of
MonadCatch
and Pushable
:
toHaskellFunction (myFun `catchM` (\e -> raiseError (e :: FooException)))
pushAsHaskellFunction :: forall e a. Exposable e a => a -> LuaE e () Source #
Pushes the given value as a function to the Lua stack.
See toHaskellFunction
for details.