TABLE OF CONTENTS


::pwtk::intlist_in_range1_

SYNOPSIS

proc ::pwtk::intlist_in_range1_ {indexList lastIndex} {

PURPOSE

Check that indices in the list are integers and within the [1,lastIndex] range.

SOURCE

    foreach int $indexList {
        ::pwtk::int_in_range1_ $int $lastIndex
    }
    return $indexList
}