예제 #1
0
  /** @see prefuse.data.util.Index#rows(boolean) */
  public IntIterator rows(boolean val) {
    if (!(m_index instanceof BooleanIntSortedMap)) throw new IllegalStateException();

    BooleanIntSortedMap index = (BooleanIntSortedMap) m_index;
    return index.valueRangeIterator(val, true, val, true);
  }