@hackage luautils0.1.2
Helpers for Haskell integration with Lua
Categories
License
LicenseRef-GPL
Maintainer
ajnsit@gmail.com
Links
Versions
Installation
Dependencies (6)
- base >=3 && <5
- containers >=0.4 && <5
- custom-prelude >=0.1
- hslua >=0.3.4
- monad-loops >=0.3
- text >=0.11 Show all…
Dependents (2)
@hackage/language-puppet, @hackage/acme-everything
LuaUtils (luautils-0.1.2)
This package is an add-on to the @HsLua@ package by Gracjan Polak (http://hackage.haskell.org/package/hslua).
HsLua only provides a very bare-bones wrapper over the Lua API, and this package is meant to fill in the gap by providing some commonly used features.
Currently the following features are provided -
- @Lua.StackValue@ instances for a variety of commonly used datatypes, such as Lists, Maps, Tuples, Either, Maybe etc.
- @luaDoString@ and @luaDoFile@ utility functions.
- @dumpStack@ function to dump the contents of the stack for debugging.
Changelog
0.1 : Intial release
0.1.1.0 : Added a Lua.StackValue instance for Text and Data.Map
0.1.1.1 : No Changes. Bumped version number for upload to Hackage
0.1.1.2 : Fixed bug with the StackValue instance for lists
0.1.2 : HsLua 0.3.9 compatibility; LuaDoFile and LuaDoString now return IO () instead of IO Int