Changeset 3657
- Timestamp:
- 06/22/08 00:18:37 (3 months ago)
- Files:
-
- trunk/tango/util/container/more/Stack.d (modified) (2 diffs)
- trunk/tango/util/container/more/Vector.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/util/container/more/Stack.d
r3592 r3657 100 100 /********************************************************************** 101 101 102 Push a n arrayof values onto the stack.102 Push a series of values onto the stack. 103 103 104 104 Throws an exception when the stack is full … … 106 106 **********************************************************************/ 107 107 108 void push (V[] value)108 void pushMore (V[] value...) 109 109 { 110 110 foreach (v; value) trunk/tango/util/container/more/Vector.d
r3656 r3657 87 87 /********************************************************************** 88 88 89 Add a n arrayof values to the vector.89 Add a series of values to the vector. 90 90 91 91 Throws an exception when the vector is full … … 93 93 **********************************************************************/ 94 94 95 void add (V[] value)95 void addMore (V[] value...) 96 96 { 97 97 foreach (v; value)












