Slices

If the collection is ordered, you can print a slice from the collection:

   Print myCats[ 2:3 ]
prints { 2:"Charlotte", 3:"Chloe" }

Collection Methods

In addition to the methods implemented by Variants, most collections implement one or more of these methods:

    collection.Append( value )
    collection.Prepend( value )
    collection.InsertAt( key, value )
    collection.Slice( startSlice, endSlice )
    integer = collection.Count