pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2003-09-05
2003-09-05 12:36:22 by Johan Sundström <oyasumi@gmail.com>
09bc45cb7840341b2670735f653c7ce7fce7bc56 (
17
lines) (+
11
/-
6
)
[
Show
|
Annotate
]
Branch:
7.9
Helpful pointers.
Rev: src/builtin_functions.c:1.507
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: builtin_functions.c,v 1.
506
2003/09/05
11
:
56
:
24
grubba
Exp $
+
|| $Id: builtin_functions.c,v 1.
507
2003/09/05
12
:
36
:
22
jhs
Exp $
*/ #include "global.h"
-
RCSID("$Id: builtin_functions.c,v 1.
506
2003/09/05
11
:
56
:
24
grubba
Exp $");
+
RCSID("$Id: builtin_functions.c,v 1.
507
2003/09/05
12
:
36
:
22
jhs
Exp $");
#include "interpret.h" #include "svalue.h" #include "pike_macros.h"
436:
*! *! @note *! Assumes the string or character to be coded according to
-
*! ISO-10646 (aka Unicode).
+
*! ISO-10646 (aka Unicode).
If they are not, @[Locale.Charset.decoder]
+
*! can do the initial conversion for you.
*! *! @note *! Prior to Pike 7.5 this function only accepted strings. *! *! @seealso
-
*! @[upper_case()]
+
*! @[upper_case()]
, @[Locale.Charset.decoder]
*/ PMOD_EXPORT void f_lower_case(INT32 args) {
505:
*! *! @note *! Assumes the string or character to be coded according to
-
*! ISO-10646 (aka Unicode).
+
*! ISO-10646 (aka Unicode).
If they are not, @[Locale.Charset.decoder]
+
*! can do the initial conversion for you.
*! *! @note *! Prior to Pike 7.5 this function only accepted strings. *! *! @seealso
-
*! @[lower_case()]
+
*! @[lower_case()]
, @[Locale.Charset.decoder]
*/ PMOD_EXPORT void f_upper_case(INT32 args) {
6434:
*! Elements are compared with @[`==]. They are also hashed (see *! @[lfun::__hash] for further details if the array contains *! objects).
+
*! @seealso
+
*! @[group_by]
*/ PMOD_EXPORT void f_uniq_array(INT32 args) {