list.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '" Copyright (c) 2001 Kevin B. Kenny.  All rights reserved.
  5. '"
  6. '" See the file "license.terms" for information on usage and redistribution
  7. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. '" 
  9. '" RCS: @(#) $Id: list.n,v 1.7.4.1 2004/10/27 12:52:40 dkf Exp $
  10. '" 
  11. .so man.macros
  12. .TH list n "" Tcl "Tcl Built-In Commands"
  13. .BS
  14. '" Note:  do not modify the .SH NAME line immediately below!
  15. .SH NAME
  16. list - Create a list
  17. .SH SYNOPSIS
  18. fBlist fR?fIarg arg ...fR?
  19. .BE
  20. .SH DESCRIPTION
  21. .PP
  22. This command returns a list comprised of all the fIargfRs,
  23. or an empty string if no fIargfRs are specified.
  24. Braces and backslashes get added as necessary, so that the fBlindexfR command
  25. may be used on the result to re-extract the original arguments, and also
  26. so that fBevalfR may be used to execute the resulting list, with
  27. fIarg1fR comprising the command's name and the other fIargfRs comprising
  28. its arguments.  fBListfR produces slightly different results than
  29. fBconcatfR:  fBconcatfR removes one level of grouping before forming
  30. the list, while fBlistfR works directly from the original arguments.
  31. .SH EXAMPLE
  32. The command
  33. .CS
  34. fBlistfR a b "c d e  " "  f {g h}"
  35. .CE
  36. will return
  37. .CS
  38. fBa b {c d e  } {  f {g h}}fR
  39. .CE
  40. while fBconcatfR with the same arguments will return
  41. .CS
  42. fBa b c d e f {g h}fR
  43. .CE
  44. .SH "SEE ALSO"
  45. lappend(n), lindex(n), linsert(n), llength(n), lrange(n),
  46. lreplace(n), lsearch(n),
  47. .VS 8.4
  48. lset(n),
  49. .VE 8.4
  50. lsort(n)
  51. .SH KEYWORDS
  52. element, list