diff dwtx/dwtxhelper/Collection.d @ 161:f8d52b926852

...
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:49:30 +0200
parents 7926b636c282
children 1a5b8f8129df
line wrap: on
line diff
--- a/dwtx/dwtxhelper/Collection.d	Wed Aug 27 02:07:22 2008 +0200
+++ b/dwtx/dwtxhelper/Collection.d	Wed Aug 27 14:49:30 2008 +0200
@@ -2160,7 +2160,14 @@
         }
         return EMPTY_SET_;
     }
-
+    static int binarySearch(List list, Object key){
+        implMissing( __FILE__, __LINE__ );
+        return 0;
+    }
+    static int binarySearch(List list, Object key, Comparator c){
+        implMissing( __FILE__, __LINE__ );
+        return 0;
+    }
     public static List unmodifiableList( List list ){
         implMissing( __FILE__, __LINE__ );
         return null;