Changeset 3672
- Timestamp:
- 06/23/08 23:51:38 (4 months ago)
- Files:
-
- trunk/tango/util/container/more/Stack.d (modified) (1 diff)
- trunk/tango/util/container/more/Vector.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/util/container/more/Stack.d
r3667 r3672 18 18 19 19 A stack of the given value-type V, with maximum depth Size. Note 20 that , being a struct, this is a stack-based Stack20 that this does not generate any heap activity 21 21 22 22 ******************************************************************************/ trunk/tango/util/container/more/Vector.d
r3668 r3672 20 20 21 21 A vector of the given value-type V, with maximum depth Size. Note 22 that this is a value type, and does no memory allocation of its 23 own 22 that this does no memory allocation of its own 24 23 25 24 ******************************************************************************/ … … 31 30 32 31 alias slice opSlice; 32 alias add opCatAssign; 33 33 34 34 /***********************************************************************












