Tabnine Logo
TIntList.removeAt
Code IndexAdd Tabnine to your IDE (free)

How to use
removeAt
method
in
gnu.trove.list.TIntList

Best Java code snippets using gnu.trove.list.TIntList.removeAt (Showing top 11 results out of 315)

origin: alibaba/mdrill

public int removeAt( int offset ) {
  synchronized( mutex ) { return list.removeAt( offset ); }
}
origin: alibaba/mdrill

@Override
public Integer remove( int index ) {
  int previous_value = list.removeAt( index );
  if ( previous_value == list.getNoEntryValue() ) return null;
  else return Integer.valueOf( previous_value );
}
origin: MovingBlocks/Terasology

public int get(String forUseBy) {
  if (pool.isEmpty()) {
    IntBuffer buffer = BufferUtils.createIntBuffer(BUFFER_FETCH_SIZE);
    GL15.glGenBuffers(buffer);
    for (int i = 0; i < BUFFER_FETCH_SIZE; ++i) {
      pool.add(buffer.get(i));
    }
    totalPoolSize += BUFFER_FETCH_SIZE;
  }
  int result = pool.removeAt(pool.size() - 1);
  if (traceBufferUsage) {
    usageTracker.put(result, forUseBy);
  }
  return result;
}
origin: net.sf.trove4j/trove4j

public int removeAt( int offset ) {
  synchronized( mutex ) { return list.removeAt( offset ); }
}
origin: com.palantir.patches.sourceforge/trove3

@Override
public int removeAt( int offset ) {
  synchronized( mutex ) { return list.removeAt( offset ); }
}
origin: net.sf.trove4j/core

public int removeAt( int offset ) {
  synchronized( mutex ) { return list.removeAt( offset ); }
}
origin: hernad/easyrec

public int removeAt( int offset ) {
  synchronized( mutex ) { return list.removeAt( offset ); }
}
origin: net.sf.trove4j/trove4j

@Override
public Integer remove( int index ) {
  int previous_value = list.removeAt( index );
  if ( previous_value == list.getNoEntryValue() ) return null;
  else return Integer.valueOf( previous_value );
}
origin: com.palantir.patches.sourceforge/trove3

@Override
public Integer remove( int index ) {
  int previous_value = list.removeAt( index );
  if ( previous_value == list.getNoEntryValue() ) return null;
  else return Integer.valueOf( previous_value );
}
origin: net.sf.trove4j/core

@Override
public Integer remove( int index ) {
  int previous_value = list.removeAt( index );
  if ( previous_value == list.getNoEntryValue() ) return null;
  else return Integer.valueOf( previous_value );
}
origin: hernad/easyrec

@Override
public Integer remove( int index ) {
  int previous_value = list.removeAt( index );
  if ( previous_value == list.getNoEntryValue() ) return null;
  else return Integer.valueOf( previous_value );
}
gnu.trove.listTIntListremoveAt

Javadoc

Removes value at a given offset from the list.

Popular methods of TIntList

  • add
    Adds a subset of the values in the array vals to the end of the list, in order.
  • toArray
    Copies a slice of the list into a native array.
  • get
    Returns the value at the specified offset.
  • size
    Returns the number of values in the list.
  • sort
    Sort a slice of the list (ascending) using the Sun quicksort implementation.
  • iterator
  • set
    Replace the values in the list starting at offset withlength values from the values array, starting
  • clear
    Flushes the internal state of the list, resetting the capacity to the default.
  • remove
    Removes length values from the list, starting atoffset
  • reverse
    Reverse the order of the elements in the range of the list.
  • max
    Finds the maximum value in the list.
  • min
    Finds the minimum value in the list.
  • max,
  • min,
  • isEmpty,
  • fill,
  • replace,
  • shuffle,
  • subList,
  • sum,
  • binarySearch

Popular in Java

  • Creating JSON documents from java classes using gson
  • getApplicationContext (Context)
  • putExtra (Intent)
  • getContentResolver (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Reference (javax.naming)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top plugins for WebStorm
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