summaryrefslogtreecommitdiffstats
path: root/tcl8.6/pkgs/itcl4.1.2/doc/List.3
blob: 0939daae173be9cf54b93bd17fd8100a7d3f3213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'\"
'\" Copyright (c) 1993-1998  Lucent Technologies, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
.TH Itcl_InitList 3 3.0 itcl "[incr\ Tcl] Library Procedures"
.so man.macros
.BS
'\" Note:  do not modify the .SH NAME line immediately below!
.SH NAME
Itcl_InitList, Itcl_DeleteList, Itcl_CreateListElem, Itcl_DeleteListElem, Itcl_InsertList, Itcl_InsertListElem, Itcl_AppendList, Itcl_AppendListElem, Itcl_SetListValue \- Manipulate an Itcl list object.
.SH SYNOPSIS
.nf
\fB#include <itcl.h>\fR

void
\fBItcl_InitList\fR(\fIlist\fR)

void
\fBItcl_DeleteList\fR(\fIlist\fR)

Itcl_ListElem *
\fBItcl_CreateListElem\fR(\fIlist\fR)

Itcl_ListElem *
\fBItcl_DeleteListElem\fR(\fIelem\fR)

Itcl_ListElem *
\fBItcl_InsertList\fR(\fIlist, clientData\fR)

Itcl_ListElem *
\fBItcl_InsertListElem\fR(\fIelem, clientData\fR)

Itcl_ListElem *
\fBItcl_AppendList\fR(\fIlist, clientData\fR)

Itcl_ListElem *
\fBItcl_AppendListElem\fR(\fIelem, clientData\fR)

void
\fBItcl_SetListValue\fR(\fIelem, clientData\fR)
.fi
.SH ARGUMENTS
.AP Itcl_List *list in
List info structure.
.AP Itcl_ListElem *elem in
List element info structure.
.AP ClientData clientData in
Arbitrary one-word value to save in the list.
.BE

.SH DESCRIPTION
.PP

.SH KEYWORDS
list