Difference between revisions of "Designer Primitive Operator Guide"

From Numerus
Jump to navigation Jump to search
Line 5: Line 5:


==Universal Primops==
==Universal Primops==
These primops
These primops will return meaningful results when used in any context.
===Math Primops===
Most mathematical operations use the Java <kbd>Math</kbd> object. These include <kbd>Math.abs</kbd>, <kbd>Math.sin</kbd>, <kbd>Math.cos</kbd>, <kbd>Math.pow</kbd> (for powers), etc. The complete list is contained [https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html|here].

Revision as of 18:55, 19 June 2022

Primop Index

On this page the primops are grouped either as universally applicable, or according to the Components in which they are meaningful. Primops used outside their designated purview will return empty answers (such as 0 or nil).

Each primop in these lists has a short description and a link to further information. Use this index to find the primop that you need, and follow the link to find out how it should be used.

Universal Primops

These primops will return meaningful results when used in any context.

Math Primops

Most mathematical operations use the Java Math object. These include Math.abs, Math.sin, Math.cos, Math.pow (for powers), etc. The complete list is contained [1].