comparison base/src/java/util/LinkedList.d @ 107:e944a4cf537b

Updated to dmd 1.063 and Tango trunk.
author Jacob Carlborg <doob@me.com>
date Sun, 22 Aug 2010 18:53:29 +0200
parents fcf926c91ca4
children 9f4c18c268b2
comparison
equal deleted inserted replaced
106:bacf7be144c4 107:e944a4cf537b
30 addAll(c); 30 addAll(c);
31 } 31 }
32 void add(int index, Object element){ 32 void add(int index, Object element){
33 version(Tango){ 33 version(Tango){
34 list.addAt(index,element); 34 list.addAt(index,element);
35 return true;
36 } else { // Phobos 35 } else { // Phobos
37 implMissing( __FILE__, __LINE__ ); 36 implMissing( __FILE__, __LINE__ );
38 } 37 }
39 } 38 }
40 bool add(Object o){ 39 bool add(Object o){