fix map function and benchmark tests
This commit is contained in:
parent
7d153fb3f1
commit
706ba55928
@ -377,11 +377,8 @@ function Library (ronin) {
|
||||
}
|
||||
}
|
||||
|
||||
this.map = async (arr, fn) => { // Run a function on each element in a list.
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const arg = arr[i]
|
||||
arr[i] = await fn(arg)
|
||||
}
|
||||
this.map = (arr, fn) => { // Run a function on each element in a list.
|
||||
return Promise.all(arr.map(fn)).then( result => { return result } )
|
||||
}
|
||||
|
||||
this.filter = (arr, fn) => { // Remove from list, when function returns false.
|
||||
|
@ -36,7 +36,7 @@
|
||||
(test "range with step" (range 0 4 2) (0 2 4))
|
||||
(test "range with negative step" (range 0 -4 -1) (0 -1 -2 -3 -4))
|
||||
(test "map" (map (1 2 3) (λ (a) (add 1 a))) (2 3 4))
|
||||
(test "filter" (filter (2 3 4 5 6)) (λ (a) (eq 0 (mod a 2))) (2 4 6))
|
||||
(test "filter" (filter (2 3 4 5 6) (λ (a) (eq 0 (mod a 2)))) (2 4 6))
|
||||
(test "reduce" (reduce (1 2 3) (λ (acc val) (add acc val)) 4) 10)
|
||||
|
||||
; Scope
|
||||
|
Loading…
x
Reference in New Issue
Block a user