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

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

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

origin: alibaba/mdrill

public int replace( int offset, int val ) {
  synchronized( mutex ) { return list.replace( offset, val ); }
}
public void remove( int offset, int length ) {
origin: com.palantir.patches.sourceforge/trove3

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

public int replace( int offset, int val ) {
  synchronized( mutex ) { return list.replace( offset, val ); }
}
public void remove( int offset, int length ) {
origin: net.sf.trove4j/core

public int replace( int offset, int val ) {
  synchronized( mutex ) { return list.replace( offset, val ); }
}
public void remove( int offset, int length ) {
origin: hernad/easyrec

public int replace( int offset, int val ) {
  synchronized( mutex ) { return list.replace( offset, val ); }
}
public void remove( int offset, int length ) {
origin: com.flowpowered/caustic-api

if (index == ii / 3) {
  indices.replace(iii, i / 3);
} else if (index > ii / 3) {
  indices.replace(iii, index - 1);
gnu.trove.listTIntListreplace

Javadoc

Sets the value at the specified offset and returns the previously stored value.

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,
  • removeAt,
  • shuffle,
  • subList,
  • sum,
  • binarySearch

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Permission (java.security)
    Legacy security code; do not use.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Best plugins for Eclipse
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