Tabnine Logo
Int2ObjectSortedMap.values
Code IndexAdd Tabnine to your IDE (free)

How to use
values
method
in
it.unimi.dsi.fastutil.ints.Int2ObjectSortedMap

Best Java code snippets using it.unimi.dsi.fastutil.ints.Int2ObjectSortedMap.values (Showing top 14 results out of 315)

origin: jtablesaw/tablesaw

public Selection lessThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value);  // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: jtablesaw/tablesaw

public Selection atMost(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value + 1);  // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: jtablesaw/tablesaw

public Selection atLeast(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: jtablesaw/tablesaw

public Selection greaterThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value + 1);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: org.datavec/datavec-dataframe

public Selection lessThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value); // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: org.datavec/datavec-dataframe

public Selection greaterThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value + 1);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: tech.tablesaw/tablesaw-core

public Selection greaterThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value + 1);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: tech.tablesaw/tablesaw-core

public Selection atMost(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value + 1);  // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: org.datavec/datavec-dataframe

public Selection atLeast(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: org.datavec/datavec-dataframe

public Selection atMost(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value + 1); // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: tech.tablesaw/tablesaw-core

public Selection atLeast(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> tail = index.tailMap(value);
  for (IntArrayList keys : tail.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: tech.tablesaw/tablesaw-core

public Selection lessThan(int value) {
  Selection selection = new BitmapBackedSelection();
  Int2ObjectSortedMap<IntArrayList> head = index.headMap(value);  // we add 1 to get values equal to the arg
  for (IntArrayList keys : head.values()) {
    addAllToSelection(keys, selection);
  }
  return selection;
}
origin: PapenfussLab/gridss

/**
 * Returns the memoized predecessor of the given path
 * @return predecessor node, null if no single predecessor is defined for the entire interval 
 */
public KmerPathNode getParent(KmerPathNode node, int start, int end) {
  AbstractInt2ObjectSortedMap<TraversalNode> cache = memoized.get(node);
  Iterator<TraversalNode> it = cache.tailMap(start).values().iterator();
  if (it.hasNext()) {
    TraversalNode existing = it.next();
    if (existing.node.firstStart() <= start && existing.node.firstEnd() >= end) {
      if (existing.parent != null) {
        return existing.parent.node.node();
      }
    }
  }
  return null;
}
/**
origin: PapenfussLab/gridss

private void memoize_fastutil_sortedmap(TraversalNode node, AbstractInt2ObjectSortedMap<TraversalNode> cache) {
  KmerPathSubnode sn = node.node;
  Iterator<TraversalNode> it = cache.tailMap(sn.firstStart()).values().iterator();
it.unimi.dsi.fastutil.intsInt2ObjectSortedMapvalues

Popular methods of Int2ObjectSortedMap

  • firstIntKey
    Returns the first (lowest) key currently in this map.
  • lastIntKey
    Returns the last (highest) key currently in this map.
  • subMap
    Note that this specification strengthens the one given in SortedMap#subMap(Object,Object).
  • comparator
  • firstKey
  • get
  • headMap
    Note that this specification strengthens the one given in SortedMap#headMap(Object).
  • int2ObjectEntrySet
  • isEmpty
  • keySet
  • lastKey
  • put
  • lastKey,
  • put,
  • tailMap

Popular in Java

  • Finding current android device location
  • getExternalFilesDir (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getResourceAsStream (ClassLoader)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • String (java.lang)
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Reference (javax.naming)
  • JButton (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now