view tango/tango/util/collection/model/Set.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line source

/*
 File: Set.d

 Originally written by Doug Lea and released into the public domain. 
 Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
 Inc, Loral, and everyone contributing, testing, and using this code.

 History:
 Date     Who                What
 24Sep95  dl@cs.oswego.edu   Create from collections.d  working file
 22Oct95  dl                 add addElements

*/


module tango.util.collection.model.Set;

private import  tango.util.collection.model.SetView,
                tango.util.collection.model.Iterator,
                tango.util.collection.model.Dispenser;


/**
 *
 * MutableSets support an include operations to add
 * an element only if it not present. 
 * 
        author: Doug Lea
 * @version 0.93
 *
 * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
 *
**/

public interface Set(T) : SetView!(T), Dispenser!(T)
{
        /**
         * Include the indicated element in the collection.
         * No effect if the element is already present.
         * @param element the element to add
         * Returns: condition: 
         * <PRE>
         * has(element) &&
         * no spurious effects &&
         * Version change iff !PREV(this).has(element)
         * </PRE>
         * Throws: IllegalElementException if !canInclude(element)
        **/

        public void add (T element);


        /**
         * Include all elements of the enumeration in the collection.
         * Behaviorally equivalent to
         * <PRE>
         * while (e.more()) include(e.get());
         * </PRE>
         * @param e the elements to include
         * Throws: IllegalElementException if !canInclude(element)
         * Throws: CorruptedIteratorException propagated if thrown
        **/

        public void add (Iterator!(T) e);
        public alias add opCatAssign;
}