Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

list ( list & list )

Concatenate two lists. Note that to add a single element to a list, it must first be converted into a single-element list, for example:

mylist = mylist & [23]

 

list abs( list )
list acos( list )
list asin( list )
list atan( list )
list cos( list )
list exp( list )
list int( list )
list log( list )
list log10( list )
list neg( list )
list sgn( list )
list sin( list )
list sqrt( list )
list tan( list )
list div( list,list )
list max( list,list )
list min( list,list )
list max( list,number )
list min( list,number )
list mod( list,list )

...