1Prelude.toLower(3kaya) Kaya module reference Prelude.toLower(3kaya)
2
3
4
6 Prelude::toLower - Returns a copy of the string with all letters lower-
7 cased
8
10 String toLower( String s )
11
13 s The string to lower-case
14
16 Returns a copy of the string with all letters lower-cased
17
18
19 s = toLower("Hello World!");
20 // s = "hello world!"
21
22 This function may give unusual results with non-ASCII characters.
23
25 Kaya standard library by Edwin Brady, Chris Morris and others
26 (kaya@kayalang.org). For further information see http://kayalang.org/
27
29 The Kaya standard library is free software; you can redistribute it
30 and/or modify it under the terms of the GNU Lesser General Public
31 License (version 2.1 or any later version) as published by the Free
32 Software Foundation.
33
35 Prelude.toLower (3kaya)
36 Prelude.toUpper_1 (3kaya)
37
38
39
40Kaya December 2010 Prelude.toLower(3kaya)