modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / delete
blob024316083c2a01e68f3a1f6b1cca5eb58aeba294
1 NAME
2     delete - delete an element from a list at a specified position
4 SYNOPSIS
5     delete(lst, index)
7 TYPES
8     lst         list
9     index       nonnegative integer less than the size of the list
11     return      type of the deleted element
13 DESCRIPTION
14      Deletes element at the specified index from list lst, and returns
15      the value of this element.
17 EXAMPLE
18     ; lst = list(2,3,4,5)
20     list (4 elements, 4 nonzero):
21       [[0]] = 2
22       [[1]] = 3
23       [[2]] = 4
24       [[3]] = 5
26     ; delete(lst, 2)
27             4
28     ; print lst
30     list (3 elements, 3 nonzero):
31       [[0]] = 2
32       [[1]] = 3
33       [[2]] = 5
35 LIMITS
36     none
38 LINK LIBRARY
39     none
41 SEE ALSO
42      append, insert, islist, pop, push, remove, rsearch, search,
43      select, size
45 ## Copyright (C) 1999-2006  Landon Curt Noll
47 ## Calc is open software; you can redistribute it and/or modify it under
48 ## the terms of the version 2.1 of the GNU Lesser General Public License
49 ## as published by the Free Software Foundation.
51 ## Calc is distributed in the hope that it will be useful, but WITHOUT
52 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
53 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
54 ## Public License for more details.
56 ## A copy of version 2.1 of the GNU Lesser General Public License is
57 ## distributed with calc under the filename COPYING-LGPL.  You should have
58 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
59 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
61 ## @(#) $Revision: 30.1 $
62 ## @(#) $Id: delete,v 30.1 2007/03/16 11:10:42 chongo Exp $
63 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/delete,v $
65 ## Under source code control:   1994/03/19 03:13:18
66 ## File existed as early as:    1994
68 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
69 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/