TIP #201: ADD 'IN' OPERATOR TO [EXPR] ======================================= Version: $Revision: 1.5 $ Author: Jeff Hobbs State: Final Type: Project Tcl-Version: 8.5 Vote: Done Created: Friday, 21 May 2004 URL: https://tip.tcl-lang.org201.html Post-History: ------------------------------------------------------------------------- ABSTRACT ========== This TIP proposes new *expr* operators "*in*" and "*ni*" that simplifies the standard "does this item exist in list" *lsearch* case in expressions, with "*ni*" being "not in". RATIONALE =========== The addition of *in* and *ni* operators is syntactic sugar for the verbose *lsearch* operation that checks for a single items existence (or non-existence) in a list. It serves to simplify the reading and writing of code that requires this comparatively-common operation. The operators will do *lsearch -exact* searching as well, which would correct an inadvertant bug that many users introduce into their code when they write: if {[lsearch $list $item] != -1} { ... } as *lsearch* does *-glob* matching by default. I have found this error repeated often in user code. Note that [TIP #133] uses an *in* operator as a motivating case, but is actually proposing a much more general alteration. SPECIFICATION =============== A new infix *expr* operators *in* and *ni* will be added, making the following pairs of commands equivalent (assuming nobody has redefined *lsearch* of course): * Searching for an arbitrary item in an arbitrary list. if {[lsearch -exact $list $item] != -1} { ... } if {$item in $list} { ... } * Checking for the absence of an arbitrary item from an arbitrary list. if {[lsearch -exact $list $item] == -1} { ... } if {$item ni $list} { ... } COMMENTS ========== There was a proposal to add a separate operator "*!in*" to do negated membership testing, but that significantly complicates the expression parser and is likely to be harder to teach to newcomers to Tcl, since it looks like the application of an operator to another operator. *notin* and *ni* were also suggested, and *ni* was accepted as a reasonable pair for "not in", similar to *ne* being "not equal". There was some concern about *ni* in that TeX has a different interpretation, but that is unlikely to confuse the majority of Tcl users. REFERENCE IMPLEMENTATION ========================== /[To Follow]/ COPYRIGHT =========== This document has been placed in the public domain. ------------------------------------------------------------------------- TIP AutoGenerator - written by Donal K. Fellows