diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-08 21:39:15 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-08 21:39:15 (GMT) |
commit | 435b2f0430293700795f70f619053e29dee68eaf (patch) | |
tree | 9be5e2329206006dde729e37ec344c607fa9396e /doc/expr.n | |
parent | e1e6afc8e8df91158a72b2f9cdbe132b5f2a6f5a (diff) | |
download | tcl-435b2f0430293700795f70f619053e29dee68eaf.zip tcl-435b2f0430293700795f70f619053e29dee68eaf.tar.gz tcl-435b2f0430293700795f70f619053e29dee68eaf.tar.bz2 |
Docs for TIP#201 and TIP#212; this allows these TIPs to become Final
Diffstat (limited to 'doc/expr.n')
-rw-r--r-- | doc/expr.n | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: expr.n,v 1.15 2004/09/18 17:37:13 dkf Exp $ +'\" RCS: @(#) $Id: expr.n,v 1.16 2004/10/08 21:39:16 dkf Exp $ '\" .so man.macros .TH expr n 8.5 Tcl "Tcl Built-In Commands" @@ -147,6 +147,15 @@ Valid for all operand types. Boolean string equal and string not equal. Each operator produces a zero/one result. The operand types are interpreted only as strings. .TP 20 +\fBin\0\0ni\fR +.VS 8.5 +List containment and negated list containment. Each operator produces +a zero/one result and treats its first argument as a string and its +second argument as a Tcl list. The \fBin\fR operator indicates +whether the first argument is a member of the second argument list; +the \fBni\fR operator inverts the sense of the result. +.VE 8.5 +.TP 20 \fB&\fR Bit-wise AND. Valid for integer operands only. .TP 20 |