Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Suggestion for this documentation

  • Show the use of procedure

keinfarbton: Can somebody give me a hint what 'procedure' is?

The collection classes

list.add(1);

should be

list.append(1)

FilteringIterator?

import tango.util.collection.ArraySeq;

should be

import tango.util.collection.ArrayBag;

baxissimo: the Bag description says the order is undefined. I would expect the situation is more like the Bag interface doesn't define an order, however specific implementations (like TreeBag?) can specify an ordering. And I hope TreeBag? does indeed specify that elements are stored and traversed in sorted order.