NAME
pseudo-core.ops - Parrot Core Ops
DESCRIPTION
- end()
-
Halts the interpreter. See also exit.
- load_bytecode(in STR)
-
Load Parrot bytecode from file $1, and search the library path to locate the file.
- loadlib(out PMC, in STR)
-
Load a dynamic link library named $2 and store it in $1.
###############################################################################
COPYRIGHT
Copyright (C) 2001-2008, Parrot Foundation.
LICENSE
This program is free software. It is subject to the same license as the Parrot interpreter itself.
NAME
pseudo-debug.ops
DESCRIPTION
Parrot debugger
HISTORY
Initial version by Daniel Grunblatt on 2002.5.19
Parrot debug operations
DESCRIPTION
Operations that work on strings, whether constructing, modifying or examining them.
- chopn(inout STR, in INT)
-
Remove n characters specified by integer $2 from the tail of string $1. If $2 is negative, cut the string after -$2 characters.
- chopn(out STR, in STR, in INT)
-
Remove n characters specified by integer $3 from the tail of string $2, and returns the characters not chopped in string $1. If $3 is negative, cut the string after -$3 characters.
COPYRIGHT
Copyright (C) 2001-2008, Parrot Foundation.
LICENSE
This program is free software. It is subject to the same license as the Parrot interpreter itself.
NAME };
$string = q{ /* ** pseudo-string.ops */
NAME
pseudo-string.ops - String Operations
DESCRIPTION
Operations that work on strings, whether constructing, modifying or examining them.
- concat(inout STR, in STR)
- concat(in PMC, in STR)
- concat(in PMC, in PMC)
-
Modify string $1 in place, appending string $2. The
PMC
versions are MMD operations. - concat(out STR, in STR, in STR)
- concat(in PMC, in PMC, in STR)
- concat(in PMC, in PMC, in PMC)
- n_concat(out PMC, in PMC, in STR)
- n_concat(out PMC, in PMC, in PMC)
-
Append strings $3 to string $2 and place the result into string $1. The
PMC
versions are MMD operations. Then_
variants create a new PMC $1 to store the result. See src/ops/math.ops for the generalinfix
andn_infix
syntax.
COPYRIGHT
Copyright (C) 2001-2008, Parrot Foundation.
LICENSE
This program is free software. It is subject to the same license as the Parrot interpreter itself.
- n_concat(foobar, in PMC, in PMC)
-
};
1;
# Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 100 # End: # vim: expandtab shiftwidth=4:
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 323:
'=item' outside of any '=over'
=over without closing =back