.DT

delete

$MUDNAME$ creator help

delete



.SH Name

.SI 5

delete() - remove specified element

.EI



.SH Synopsis

.SI 5

array delete( array input, int start, int length );

.EI



.SH Description

.SP 5 5

Delete will return the specified array minus the number of

elements specified by length, from the start position.

For instance, delete(({6, 7, 8, 9, 10}), 1, 2) will return

({6, 9, 10}). Normal array indexing rules apply for the

start argument.

.EP



.SH See also

.SP 5 5

rm, filter, map

.EP

