1Array.all(3kaya) Kaya module reference Array.all(3kaya)
2
3
4
6 Array::all - Check if all elements satisfy a predicate
7
9 Bool all( Bool(a) pred, [a] xs )
10
12 pred The predicate to test with
13
14 xs The array to test
15
17 Return true if all of the elements of xs satsify the predicate p
18
19
20 Always returns true for the empty array
21
23 Kaya standard library by Edwin Brady, Chris Morris and others
24 (kaya@kayalang.org). For further information see http://kayalang.org/
25
27 The Kaya standard library is free software; you can redistribute it
28 and/or modify it under the terms of the GNU Lesser General Public
29 License (version 2.1 or any later version) as published by the Free
30 Software Foundation.
31
33 Array.any (3kaya)
34
35
36
37Kaya December 2010 Array.all(3kaya)