view tango/tango/group/collection.d @ 270:d9d5d59873d8 trunk

[svn r291] Fixed a bunch of the old Phobos tests to work with Tango. Branch statements now emit a new block after it. Fixed the _adSort runtime function had a bad signature. Added a missing dot prefix on compiler generated string tables for string switch. Fixed, PTRSIZE seems like it was wrong on 64bit, now it definitely gets set properly.
author lindquist
date Mon, 16 Jun 2008 16:01:19 +0200
parents 1700239cab2e
children
line wrap: on
line source

/**
 *
 * copyright:      Copyright (c) 2007 Steven Schveighoffer. All rights reserved
 * license:        BSD style: $(LICENSE)
 * version:        Nov 2007: Initial release
 * author:         schveiguy
 *
 * Convenience module to import all collection related modules
 */

module tango.group.collection;

public import   tango.util.collection.HashMap,
                tango.util.collection.TreeMap,
                tango.util.collection.TreeBag,
                tango.util.collection.LinkMap,
                tango.util.collection.HashSet,
                tango.util.collection.LinkSeq,
                tango.util.collection.ArrayBag,
                tango.util.collection.ArraySeq,
                tango.util.collection.CircularSeq;

public import   tango.util.collection.model.Seq,
                tango.util.collection.model.Map,
                tango.util.collection.model.Set,
                tango.util.collection.model.Bag,
                tango.util.collection.model.View,
                tango.util.collection.model.BagView,
                tango.util.collection.model.SeqView,
                tango.util.collection.model.MapView,
                tango.util.collection.model.SetView,
                tango.util.collection.model.Iterator,
                tango.util.collection.model.Sortable,
                tango.util.collection.model.Dispenser,
                tango.util.collection.model.Comparator,
                tango.util.collection.model.HashParams,
                tango.util.collection.model.SortedKeys,
                tango.util.collection.model.SortedValues,
                tango.util.collection.model.GuardIterator;


public import   tango.util.collection.iterator.ArrayIterator,
                tango.util.collection.iterator.FilteringIterator,
                tango.util.collection.iterator.InterleavingIterator;