Namespace predef::
- Description
This is the default namespace and contains lots of global symbols.
- Typedef
utf8_string
typedef__attribute__("utf8_string",string(8bit))utf8_string- Description
String containing UTF-8 encoded data.
This is similar to a
string(8bit), but allows the compiler to keep track of whether strings are UTF-8 or not.- See also
- Constant
UNDEFINED
constantUNDEFINED- Description
The undefined value; ie a zero for which zero_type() returns 1.
- Constant
__null_program
constant__null_program- Description
Program used internally by the compiler to create objects that are later modified into instances of the compiled program by the compiler.
- See also
- Constant
__placeholder_object
constant__placeholder_object- Description
Object used internally by the compiler.
- See also
- Constant
sprintf_args
constantsprintf_args- Description
Type constant used for typing extra arguments that are sent to sprintf().
- See also
- Constant
sprintf_format
constantsprintf_format- Description
Type constant used for typing arguments that are optionally sent to sprintf() depending on the presence of extra arguments.
- See also
- Constant
sprintf_result
constantsprintf_result- Description
Type constant used for typing the return value from sprintf().
- See also
- Constant
strict_sprintf_format
constantstrict_sprintf_format- Description
Type constant used for typing arguments that are always sent to sprintf() regardless of the presence of extra arguments.
- See also
- Constant
this
constantthis- Description
Builtin read only variable that evaluates to the current object.
- See also
- Constant
this_function
constantthis_function- Description
Builtin constant that evaluates to the current function.
- See also
- Constant
this_program
constantthis_program- Description
Builtin constant that evaluates to the current program.
- See also
- Variable
_static_modules
object_static_modules- Description
This is an object containing the classes for all static (ie non-dynamic) C-modules.
In a typic Pike with support for dynamic modules the contained module classes are:
If the Pike binary lacks support for dynamic modules, all C-modules will show up here.