Kryptostack
|
Intenionally cloned red book implementations.
This operators are entries in the systemdict dictionary.
Red book operator creates an array from operand stack.
Red book operator creates a dictionary from operand stack.
Red book operator creates a procedure from operand stack.
Red book operator pops an object from the operand stack, produces a text representation of that
object’s value, and writes the result to the standard output, followed by a new line.
The text is that produced by the cvs operator.
Red book operator pops an object from the operand stack, produces a text representation of that object,
and writes the result to the standard output, followed by a new line.
This operator attempts to produce a result that resembles the red book syntax for creating the object.
Red book begin procedure operator.
Red book operator returns the absolute value of n. The type of the result is
the same as the type of z unless z is the smallest integer, in which case the result is a real number.
Successively pushes all n elements of the array A on the operand stack
(where n is the length of A), and then pushes the operand itself.
Red book operator determines whether the string seek matches the initial substring of str.
If it matches, anchorsearch splits string into two segments
match, the portion of str that matches seek, and post, the remainder of str
and returns the string objects post and match followed by the boolean value true.
Otherwise, it returns the original str followed by false. anchorsearch is a special case of the search operator.
Logical conjunction for B operands or bitwise "and" for I operands.
Red book operator creates an array of length I, each of whose elements is initialized with a null object.
The I operand must be nonnegative.
Red book operator stores the objects to
from the operand stack into array,
where n is the length of A|a.
Red book operator pushes D on the dictionary stack, making it the current dictionary.
Red book operator shifts the binary representation of left by
bits and returns the result.
Returns the least integer value greater than or equal to z.
Red book operator pops all objects from operator stack.
Red book operator pops all nonpermanent dictionaries off dictionary stack.
Red book operator pops all objects from operator stack until it encounters a mark, which is also pops.
Red book operator counts objects on the operand stack.
Red book operator counts the number of dictionaries currently on the dictionary stack.
Red book operator counts objects on the execution stack.
Red book operator counts the number of objects on the operand stack, starting with the top element
and continuing down to but not including the first mark encountered.
Red book operator pushes the current dictionary (the dictionary on the top of the dictionary stack)
onto the operand stack. currentdict does not pop the dictionary stack; it just pushes
a duplicate of its top element on the operand stack.
Makes object non-executable aka literal.
Converts a string to a name object.
Creates a string representation of X and stores it at the beginning of S.
Pushes a new String with the representation onto the stack.
Makes object executable.
Red book operator associates key and value in the current dictionary.
Red book operator generates a dictionary. The size value I will be ignored.
Copies the dictionary stack into an array.
Red book operator divides by
,
producing a result that is always a R even if both operands are I.
Use idiv instead if the operands are I and an I result is desired.
Red book operator duplicates the top object X on the operand stack. dup copies only the object;
the value of a composite object is not copied but is shared.
Red book operator pops the current dictionary off dictionary stack,
but throws a dictstackunderflow, if there are only 3 dictionaries left on the stack.
Exchanges the top two objects on the operand stack.
Copies execution stack into an array.
Terminates execution of the innermost, dynamically enclosing
instance of a looping context without regard to lexical relationship.
A looping context is a procedure invoked repeatedly by one of the
following control operators:
exit pops the execution stack down to the level of that operator.
The interpreter then resumes execution at the next object in normal
sequence after that operator.
exit does not affect the operand stack or dictionary stack.
Any objects pushed on these stacks during execution of the looping
context remain after the context is exited.
Red book operator exp raises base to the exponent power.
If the exponent has a fractional part, the result is meaningful only
if the base is nonnegative. The result is always a R.
Returns the greatest integer value less than or equal to z.
Red book operator returns a single element from the value of the first operand.
If the first operand is an array, stack or a string, get treats the second operand as an index and returns the element identified by I,
counting from 0. I must be in the range 0 to n - 1, where n is the length of the array, stack or string.
If the first operand is a dictionary, get looks up X as a key in the dictionary and returns the associated value.
Red book operator creates a new array or string object whose value consists of some subsequence of the original array or string.
The subsequence consists of count elements starting at the specified index in the original object.
The elements in the subsequence array are shared between the original and new array.
Red book operator divides by
and returns
the I part of the quotient, with any fractional part discarded. Both operands
of idiv must be I and the result is an I.
Red book operator removes both operands from the stack,
then executes proc if bool is true. The if operator pushes no results
of its own on the operand stack, but proc may do so.
Red book operator removes all three operands from the stack,
then executes if B is true or
if B is false.
The ifelse operator pushes no results of its own on the operand stack,
but the procedure it executes may do so.
Red book operator removes the I from the operand stack, counts down
to the I-th element from the top of the stack, and pushes a copy of that
element on the stack.
Red book operator tests whether key is in D.
Red book operator ln returns the natural logarithm of z.
The result is a real number.
Red book operator searches dictionary stack for and returns associated
.
Results in an undefined error, if can not be found.
Red book operator log returns the logarithm base 10 of z.
The result is a real number.
Pushes a mark object onto the operand stack.
Pushes a mark object onto the operand stack.
Pushes a mark object onto the operand stack.
returns the negative of . The type of the result is the same as the type of
unless is equal to MIN_INT, in which case the result is a R.
returns the logical negation of the operand if it is B. If the operand is an
I, not returns the bitwise complement (ones complement) of its binary representation.
returns the logical disjunction of the operands if they are B. If the operands
are I, or returns the bitwise "inclusive or" of their binary representations.
Red book operator prints S. S will be poped from the stack. No extra new line will be printed.
printes text representations of every object on the stack,
but leaves the stack unchanged. pstack applies the == operator to each element
of the stack, starting with the topmost element.
Red book operator replaces a single element of the value of the first operand.
If the first operand is an array, stack or a string, put treats the second
operand as an index and stores the third operand at the position identified
by the index, counting from 0. I must be in the range 0 to n - 1, where n is
the length of the array, stack or string. If the first operand is a
dictionary, put uses the second operand as a key and the third operand
as a value, and stores this key-value pair into dict. If key is already
present as a key in dict, put simply replaces its value by .
Otherwise, put creates a new entry for key and associates with it.
Red book operator replaces a subsequence of the elements of
the first operand by the entire contents of the third operand.
The subsequence that is replaced begins at index I in the first operand;
its length is the same as the length of the third operand.
The objects are copied from the third operand to the first,
as if by a sequence of individual get and put operations.
removes the top element from the operand stack and discards it.
Red book operator returns a random I in the range 0 to ,
produced by a pseudo-random number generator.
The random number generator’s state can be reset by srand and interrogated by rrand.
Red book operator returns the value of a clock that counts in real time.
independently of the execution of the interpreter. The unit of time is one millisecond.
We use the Unix epoch as the starting point, deviating from the red book definition.
Performs a circular shift of the objects
through on the operand stack by the amount J.
Returns the integer value nearest to z. If z is equally close to its
two nearest integers, round returns the greater of the two.
Red book operator returns an I representing the current state
of the random number generator used by rand. This may later be presented
as an operand to srand to reset the random number generator
to the current position in the sequence of numbers produced.
Red book operator looks for the first occurrence of the string within
and
returns the results of this search on the operand stack.
The topmost result is a boolean literal that indicates whether the search succeeded.
If search finds a subsequence of whose elements are equal to the elements of
,
it splits into three segments:
It then pushes the string objects ,
, and
on the operand stack,
followed by the boolean literal true.
If search does not find a match, it pushes the original followed by false.
Square root.
Red book operator initializes the random number generator with the seed int, which may be any I value.
Executing srand with a particular value causes subsequent invocations of rand to generate a reproducible sequence of results.
The random number state is maintained separately for each Context.
Red book operator prints text representations of every object on the stack,
but leaves the stack unchanged. stack applies the = operator to each element of the
stack, starting with the topmost element.
Replace topmost definition of key.
Changes to systemdict and kryptodict are possible.
Red book operator creates a string of length I, each of whose elements is initialized with the integer 0,
and pushes this string on the operand stack.
Truncates z toward 0 by removing its fractional part.
Red book operator returns a N that identifies the type of X.
Red book operator removes key and its value from D.
Red book operator returns the value of a clock that is incremented by 1
for every millisecond of execution by the interpreter.
Red book operator determines which dictionary on the dictionary stack, if any,
contains a key whose name is X.
Returns the executable attribute of X as B.
returns the logical “exclusive or” of the operands if they are boolean. If the operands
are integers, xor returns the bitwise “exclusive or” of their binary representations.