com.metsci.glimpse.util.primitives
Interface FloatsModifiable

All Superinterfaces:
Floats
All Known Implementing Classes:
FloatsArray

public interface FloatsModifiable
extends Floats

Author:
hogye

Method Summary
 void append(float v)
           
 void append(float[] vs)
           
 void append(float[] vs, int from, int to)
           
 void append(java.nio.FloatBuffer vs)
           
 void append(java.nio.FloatBuffer vs, int c)
           
 void append(Floats vs)
           
 void append(Floats vs, int from, int to)
           
 void compact()
           
 void ensureCapacity(int minCapacity)
           
 void insert(int i, float v)
           
 void insert(int i, float[] vs)
           
 void insert(int i, float[] vs, int from, int to)
           
 void insert(int i, java.nio.FloatBuffer vs)
           
 void insert(int i, java.nio.FloatBuffer vs, int c)
           
 void insert(int i, Floats vs)
           
 void insert(int i, Floats vs, int from, int to)
           
 void prepend(float v)
           
 void prepend(float[] vs)
           
 void prepend(float[] vs, int from, int to)
           
 void prepend(java.nio.FloatBuffer vs)
           
 void prepend(java.nio.FloatBuffer vs, int c)
           
 void prepend(Floats vs)
           
 void prepend(Floats vs, int from, int to)
           
 void remove(float v)
          Removes a single copy of the specified value.
 void set(int i, float v)
           
 
Methods inherited from interface com.metsci.glimpse.util.primitives.Floats
copyOf, copyOf, copyTo, first, isEmpty, last, n, v
 

Method Detail

set

void set(int i,
         float v)

insert

void insert(int i,
            float v)

insert

void insert(int i,
            float[] vs)

insert

void insert(int i,
            Floats vs)

insert

void insert(int i,
            java.nio.FloatBuffer vs)

insert

void insert(int i,
            float[] vs,
            int from,
            int to)

insert

void insert(int i,
            Floats vs,
            int from,
            int to)

insert

void insert(int i,
            java.nio.FloatBuffer vs,
            int c)

append

void append(float v)

append

void append(float[] vs)

append

void append(Floats vs)

append

void append(java.nio.FloatBuffer vs)

append

void append(float[] vs,
            int from,
            int to)

append

void append(Floats vs,
            int from,
            int to)

append

void append(java.nio.FloatBuffer vs,
            int c)

prepend

void prepend(float v)

prepend

void prepend(float[] vs)

prepend

void prepend(Floats vs)

prepend

void prepend(java.nio.FloatBuffer vs)

prepend

void prepend(float[] vs,
             int from,
             int to)

prepend

void prepend(Floats vs,
             int from,
             int to)

prepend

void prepend(java.nio.FloatBuffer vs,
             int c)

remove

void remove(float v)
Removes a single copy of the specified value. If multiple copies are present, there is no guarantee which one will be removed.


ensureCapacity

void ensureCapacity(int minCapacity)

compact

void compact()


Copyright © 2012 Metron, Inc.. All Rights Reserved.