All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openpdf.renderer.function.postscript.operation.True Maven / Gradle / Ivy

The newest version!
package org.openpdf.renderer.function.postscript.operation;

import java.util.Stack;


final class True implements PostScriptOperation {
	@Override
	/**
	 * true true 

* * pushes a boolean object whose value is true on the operand * stack. true is not an operator; it is a name in systemdict * associated with the boolean value true.

* * errors: stackoverflow */ public void eval(Stack environment) { environment.push(true); } }