Ns findset

From AOLserver Wiki
Revision as of 13:30, 24 May 2007 by Lemuelf (talk | contribs) (removed double bracket so it will show up as a bracketed tcl command and not as a wiki link)
Jump to navigation Jump to search

Man page: http://aolserver.com/docs/tcl/ns_findset.html


NAME

ns_findset - Find a set by its name from a list of sets

SYNOPSIS

ns_findset sets name

DESCRIPTION

This command is used to find a set by its name from a list of sets and returns the setId of the first set whose name matches name, or returns an empty string if no set matches.

EXAMPLES

   % set sets [list]
   % lappend sets [ns_set create foo]
   d0
   % lappend sets [ns_set create bar]
   d0 d1
   % lappend sets [ns_set create baz]
   d0 d1 d2
   % ns_findset $sets bar
   d1
   % llength [ns_findset $sets quux]
   0
   % ns_set cleanup

SEE ALSO

ns_set

Category Documentation - Category Core Tcl API