1Builtins.equal(3kaya) Kaya module reference Builtins.equal(3kaya)
2
3
4
6 Builtins::equal - Equality check
7
9 Bool equal( any x, any y )
10
12 x A value
13
14 y A value
15
17 Check any two values for equality. Returns true if they are equal,
18 false otherwise. equal(a,b) is equivalent to a == b
19
20
22 Kaya standard library by Edwin Brady, Chris Morris and others
23 (kaya@kayalang.org). For further information see http://kayalang.org/
24
26 The Kaya standard library is free software; you can redistribute it
27 and/or modify it under the terms of the GNU Lesser General Public
28 License (version 2.1 or any later version) as published by the Free
29 Software Foundation.
30
32 Compare with Builtins.identical (3kaya)
33
34
35
36
37Kaya December 2010 Builtins.equal(3kaya)