mirror of
https://github.com/TangentFoxy/lume.git
synced 2025-07-27 18:42:20 +00:00
Added clearer example for lume.array()
in README
This commit is contained in:
@@ -135,7 +135,7 @@ lume.sort({ 1, 3, 2 }, function(a, b) return a > b end) -- Returns { 3, 2, 1 }
|
||||
### lume.array(...)
|
||||
Iterates the supplied iterator and returns an array filled with the values.
|
||||
```lua
|
||||
lume.array(pairs({a = 1, b = 2})) -- Returns {"a", "b"}
|
||||
lume.array(string.gmatch("Hello world", "%a+")) -- Returns {"Hello", "world"}
|
||||
```
|
||||
|
||||
### lume.each(t, fn, ...)
|
||||
|
Reference in New Issue
Block a user