Added documentation, changes to standard library
collections.pmo
has been added to the standard library. This is a metapackage that will include all new data structures added to the standard library.stack.pmo
has been added to both the standard library and collections.pmo
. Stack includes a constructor STACK
, as well as O(1) push and pop methods.list.pmo
has recieved a bunch of new methods:
snip
: split a list into twoi.mean
: return the integer meanf.mean
: return the float meanmin
: return the minimum valuemax
: return the maximum valuemath.pmo
has recieved two new methods:
gcd
: return the greatest common denominator of two integerslcm
: return the least common multiple of two integers