5.1.16 delete
-------------

Syntax:
delete ( list_expression, int_expression )
Type:
list
Purpose:
deletes the element with the given index from a list (the input is not changed).
Example:
  list l="a","b","c";
  list l1=delete(l,2);l1;
==> [1]:
==>    a
==> [2]:
==>    c
  l;
==> [1]:
==>    a
==> [2]:
==>    b
==> [3]:
==>    c
See
insert;
list.
<font size="-1">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; User manual for <a href="http://www.singular.uni-kl.de/"><i>Singular</i></a> version 2-0-4, October 2002,
generated by <a href="http://www.gnu.org/software/texinfo/"><i>texi2html</i></a>.
</font>

</body>
</html>
