summaryrefslogtreecommitdiffstats
path: root/tcl8.6/doc/join.n
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-09-22 18:51:12 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-09-22 18:51:12 (GMT)
commit3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7 (patch)
tree69afbb41089c8358615879f7cd3c4cf7997f4c7e /tcl8.6/doc/join.n
parenta0e17db23c0fd7c771c0afce8cce350c98f90b02 (diff)
downloadblt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.zip
blt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.tar.gz
blt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.tar.bz2
update to tcl/tk 8.6.7
Diffstat (limited to 'tcl8.6/doc/join.n')
-rw-r--r--tcl8.6/doc/join.n44
1 files changed, 0 insertions, 44 deletions
diff --git a/tcl8.6/doc/join.n b/tcl8.6/doc/join.n
deleted file mode 100644
index c8179bb..0000000
--- a/tcl8.6/doc/join.n
+++ /dev/null
@@ -1,44 +0,0 @@
-'\"
-'\" Copyright (c) 1993 The Regents of the University of California.
-'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.
-'\"
-'\" See the file "license.terms" for information on usage and redistribution
-'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-'\"
-.TH join n "" Tcl "Tcl Built-In Commands"
-.so man.macros
-.BS
-'\" Note: do not modify the .SH NAME line immediately below!
-.SH NAME
-join \- Create a string by joining together list elements
-.SH SYNOPSIS
-\fBjoin \fIlist \fR?\fIjoinString\fR?
-.BE
-.SH DESCRIPTION
-.PP
-The \fIlist\fR argument must be a valid Tcl list.
-This command returns the string
-formed by joining all of the elements of \fIlist\fR together with
-\fIjoinString\fR separating each adjacent pair of elements.
-The \fIjoinString\fR argument defaults to a space character.
-.SH EXAMPLES
-.PP
-Making a comma-separated list:
-.PP
-.CS
-set data {1 2 3 4 5}
-\fBjoin\fR $data ", "
- \fB\(-> 1, 2, 3, 4, 5\fR
-.CE
-.PP
-Using \fBjoin\fR to flatten a list by a single level:
-.PP
-.CS
-set data {1 {2 3} 4 {5 {6 7} 8}}
-\fBjoin\fR $data
- \fB\(-> 1 2 3 4 5 {6 7} 8\fR
-.CE
-.SH "SEE ALSO"
-list(n), lappend(n), split(n)
-.SH KEYWORDS
-element, join, list, separator