comparison base/src/java/util/Collections.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 bbe49769ec18
children
comparison
equal deleted inserted replaced
106:bacf7be144c4 107:e944a4cf537b
74 public void add(Object o){ 74 public void add(Object o){
75 unsupported(); 75 unsupported();
76 } 76 }
77 public void add(String o){ 77 public void add(String o){
78 unsupported(); 78 unsupported();
79 return false; // make compiler happy
80 } 79 }
81 public bool hasNext(){ 80 public bool hasNext(){
82 return it.hasNext(); 81 return it.hasNext();
83 } 82 }
84 public bool hasPrevious(){ 83 public bool hasPrevious(){
127 unsupported(); 126 unsupported();
128 return false; // make compiler happy 127 return false; // make compiler happy
129 } 128 }
130 public void clear(){ 129 public void clear(){
131 unsupported(); 130 unsupported();
132 return false; // make compiler happy
133 } 131 }
134 public bool contains(Object o){ 132 public bool contains(Object o){
135 return list.contains(o); 133 return list.contains(o);
136 } 134 }
137 public bool contains(String o){ 135 public bool contains(String o){