| Copyright | © 2017–2021 Albert Krewinkel |
|---|---|
| License | MIT |
| Maintainer | Albert Krewinkel <tarleb+hslua@zeitkraut.de> |
| Stability | alpha |
| Portability | ForeignFunctionInterface |
| Safe Haskell | None |
| Language | Haskell2010 |
HsLua.Module.Text
Description
Provides a Lua module containing a selection of useful Text functions.
Synopsis
- documentedModule :: Module e
- len :: DocumentedFunction e
- lower :: DocumentedFunction e
- reverse :: DocumentedFunction e
- sub :: DocumentedFunction e
- upper :: DocumentedFunction e
Module
documentedModule :: Module e Source #
The text module.
Functions
len :: DocumentedFunction e Source #
Wrapper for .length
lower :: DocumentedFunction e Source #
Wrapper for .toLower
reverse :: DocumentedFunction e Source #
Wrapper for .reverse
sub :: DocumentedFunction e Source #
Returns a substring, using Lua's string indexing rules.
upper :: DocumentedFunction e Source #
Wrapper for .toUpper