示例#1
0
        /*
         * Returns an Iterator on the elements of this {@code TreeSet}.
         *
         * @return an Iterator on the elements of this {@code TreeSet}.
         * @see Iterator
         */

        public override Iterator <E> iterator()
        {
            return(backingMap.keySet().iterator());
        }