Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Programming Language : Tint Reference : Arrays : Array delete

Syntax

#(%array.delete,%index)

%array is an array. %index is the index to be deleted.

delete will move all objects from %index up one in the array.

Example

#(array,an-array,a,b,c,d,e,f,g)

#(tint.list, ,an-array.)
7 6 5 4 3 2 1
#(an-array.4)
d
#(an-array.delete,4)

#(an-array.4)
e
#(tint.list, ,an-array.)
6 5 4 3 2 1