]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/Index.java
go
[Dictionary.git] / src / com / hughes / android / dictionary / engine / Index.java
index 7cee7460c8e2f90702aaf98ca66ca8bcbb7171b2..d0d2404a02bba315ed6b7fc65bdedc4e600b7de2 100644 (file)
@@ -231,5 +231,19 @@ public final class Index implements RAFSerializable<Index> {
     return result;
   }
 
+  /*
+  public int tokenRowBinarySearch(final int rowIndex) {
+    int start = 0;
+    int end = sortedIndexEntries.size();
+    while (start < end) {
+      final int mid = (start + end) / 2;
+      final int midRowIndex = sortedIndexEntries.get(mid).startRow;
+      if (midRowIndex == rowIndex) {
+        return mid;
+      }
+      if ()
+    }
+  }
+  */
 
 }
\ No newline at end of file