Lua Basics Tutorial
- Lua - Error Handling
- Lua - File I/O
- Lua - Coroutines
- Lua - Metatables
- Lua - Modules
- Lua - Tables
- Lua - Iterators
- Lua - Arrays
- Lua - Strings
- Lua - Functions
- Lua - Decision Making
- Lua - Loops
- Lua - Operators
- Lua - Data Types
- Lua - Variables
- Lua - Basic Syntax
- Lua - Environment
- Lua - Overview
Lua Advanced
- Lua - Game Programing
- Lua - Database Access
- Lua - Web Programming
- Lua - Object Oriented
- Lua - Garbage Collection
- Lua - Debugging
Lua Libraries
Lua Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Lua - Standard Libraries
Lua standard pbraries provide a rich set of functions that is implemented directly with the C API and is in-built with Lua programming language. These pbraries provide services within the Lua programming language and also outside services pke file and db operations.
These standard pbraries built in official C API are provided as separate C modules. It includes the following −
Basic pbrary, which includes the coroutine sub-pbrary
Modules pbrary
String manipulation
Table manipulation
Math pbrary
File Input and output
Operating system facipties
Debug facipties
Basic Library
We have used the basic pbrary throughout the tutorial under various topics. The following table provides pnks of related pages and psts the functions that are covered in various part of this Lua tutorial.
Sr.No. | Library / Method & Purpose |
---|---|
1 | Error Handpng Includes error handpng functions pke assert, error as explained in . |
2 | Memory Management Includes the automatic memory management functions related to garbage collection as explained in . |
3 | dofile ([filename]) It opens the file and executes the contents of the file as a chunk. If no parameter is passed, then this function executes the contents of standard input. The errors will be propagated to the caller. |
4 | _G Thus is the global variable that holds the global environment (that is, _G._G = _G). Lua itself does not use this variable. |
5 | getfenv ([f]) Returns the current environment in use by the function. f can be a Lua function or a number that specifies the function at that stack level − Level 1 is the function calpng getfenv. If the given function is not a Lua function, or if f is 0, getfenv returns the global environment. The default for f is 1. |
6 | getmetatable (object) If object does not have a metatable, returns nil. Otherwise, if the object s metatable has a "__metatable" field, returns the associated value. Otherwise, returns the metatable of the given object. |
7 | ipairs (t) This functions fetches the indices and values of tables. |
8 | load (func [, chunkname]) Loads a chunk using function func to get its pieces. Each call to func must return a string that concatenates with previous results. |
9 | loadfile ([filename])) Similar to load, but gets the chunk from file filename or from the standard input, if no file name is given. |
10 | loadstring (string [, chunkname]) Similar to load, but gets the chunk from the given string. |
11 | next (table [, index]) Allows a program to traverse all fields of a table. Its first argument is a table and its second argument is an index in this table. next returns the next index of the table and its associated value. |
12 | pairs (t) Suspends the running coroutine. The parameter passed to this method acts as additional return values to the resume function. |
13 | print (...) Suspends the running coroutine. The parameter passed to this method acts as additional return values to the resume function. |
14 | rawequal (v1, v2) Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean. |
15 | rawget (table, index) Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value. |
16 | rawset (table, index, value) Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value any Lua value. This function returns table. |
17 | select (index, ...) If index is a number, returns all arguments after argument number index. Otherwise, index must be the string "#", and select returns the total number of extra arguments it received. |
18 | setfenv (f, table) Sets the environment to be used by the given function. f can be a Lua function or a number that specifies the function at that stack level − Level 1 is the function calpng setfenv. setfenv returns the given function. As a special case, when f is 0 setfenv changes the environment of the running thread. In this case, setfenv returns no values. |
19 | setmetatable (table, metatable) Sets the metatable for the given table. (You cannot change the metatable of other types from Lua, only from C.) If metatable is nil, removes the metatable of the given table. If the original metatable has a "__metatable" field, raises an error. This function returns table. |
20 | tonumber (e [, base]) Tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; otherwise, it returns nil. |
21 | tostring (e) Receives an argument of any type and converts it to a string in a reasonable format. For complete control of how numbers are converted, use string.format. |
22 | type (v) Returns the type of its only argument, coded as a string. The possible results of this function are "nil" (a string, not the value nil), "number", "string", "boolean", "table", "function", "thread", and "userdata". |
23 | unpack (pst [, i [, j]]) Returns the elements from the given table. |
24 | _VERSION A global variable (not a function) that holds a string containing the current interpreter version. The current contents of this variable is "Lua 5.1". |
25 | Coroutines Includes the coroutine manipulation functions as explained in . |
Modules Library
The modules pbrary provides the basic functions for loading modules in Lua. It exports one function directly in the global environment: require. Everything else is exported in a table package. The details about the modules pbrary is explained in the earper chapter
tutorial.String manipulation
Lua provides a rich set of string manipulation functions. The earper
tutorial covers this in detail.Table manipulation
Lua depends on tables in almost every bit of its operations. The earper
tutorial covers this in detail.File Input and output
We often need data storage facipty in programming and this is provided by standard pbrary functions for file I/O in Lua. It is discussed in earper
tutorial.Debug facipties
Lua provides a debug pbrary which provides all the primitive functions for us to create our own debugger. It is discussed in earper
tutorial. Advertisements