-- 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.1.1 -- | Provides a Lua module containing a selection of useful Text functions. module HsLua.Module.Text -- | The text module. documentedModule :: LuaError e => Module e -- | Recodes a string as UTF-8. fromencoding :: LuaError e => DocumentedFunction 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 -- | Converts a UTF-8 string to a different encoding. toencoding :: LuaError e => DocumentedFunction e -- | Wrapper for toUpper. upper :: DocumentedFunction e