1Builtins.Invalid_Value(3kaya)Kaya module referenceBuiltins.Invalid_Value(3kaya)
2
3
4
6 Builtins::Invalid_Value - Invalid or uninitialised value
7
9 Builtins::Invalid_Value(
10
12 This Exception is usually thrown when operations are carried out on an
13 uninitialised value, for example:
14
15
16 xs = [];
17 xs[0] = "Hello";
18 if (xs[0] == xs[300]) {
19 // Invalid_Value thrown
20 }
21
22 It may also be thrown by Builtins.unmarshal (3kaya) if the marshalled
23 String is corrupt.
24
26 Kaya standard library by Edwin Brady, Chris Morris and others
27 (kaya@kayalang.org). For further information see http://kayalang.org/
28
30 The Kaya standard library is free software; you can redistribute it
31 and/or modify it under the terms of the GNU Lesser General Public
32 License (version 2.1 or any later version) as published by the Free
33 Software Foundation.
34
35
36
37Kaya December 2010 Builtins.Invalid_Value(3kaya)