
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Select Function in Lua Programming
The select function in Lua is used to return the number of arguments that are passed into it as an argument. It can be used in two forms, the first one includes passing an index and then it will return the numbers that are passed after that number into the function as an argument in a list format, the other pattern is if we pass the length operator as a first argument, in that case it simply returns a count of the multiple arguments that are provided.
Example
Let’s explore both the cases in the examples shown below.
Case 1
print(select(1, "a", "b", "c")) --> a b c print(select(2, "a", "b", "c")) --> b c print(select(3, "a", "b", "c")) --> c
In the above example, we have passed an index, and we can see that the output from the select function will be the arguments after the given index.
Output
a b c b c c
Case 2
print(select("#")) --> 0 print(select("#", {1, 2, 3})) print(select("#", 1, 2, 3)) print(select("#", {1,2,3}, 4, 5, {6,7,8}))
In the above example, instead of passing an index, I passed the length operator, and hence the output will simply be the number of arguments passed after it.
Output
0 1 3 4