-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Lua module for text -- -- UTF-8 aware subset of Lua's string module. -- -- This package is part of HsLua, a Haskell framework built around the -- embeddable scripting language Lua. @package hslua-module-text @version 1.0.2 -- | Provides a Lua module containing a selection of useful Text functions. module HsLua.Module.Text -- | The text module. documentedModule :: Module e -- | Wrapper for length. len :: DocumentedFunction e -- | Wrapper for toLower. lower :: DocumentedFunction e -- | Wrapper for reverse. reverse :: DocumentedFunction e -- | Returns a substring, using Lua's string indexing rules. sub :: DocumentedFunction e -- | Wrapper for toUpper. upper :: DocumentedFunction e