| 707 | } |
| 708 | |
| 709 | DefineEngineMethod( ArrayObject, empty, void, (),, |
| 710 | "Emptys all elements from an array" ) |
| 711 | { |
| 712 | object->empty(); |
| 713 | } |
| 714 | |
| 715 | DefineEngineMethod( ArrayObject, uniqueValue, void, (),, |
| 716 | "Removes any elements that have duplicated values (leaving the first instance)" ) |