org.ontobox.fast.util.primitive
Interface IntCollection

All Known Subinterfaces:
IntList, IntSet
All Known Implementing Classes:
PCJIntList, PCJIntSet, StdIntList, StdIntSet, TroveIntList, TroveIntSet

public interface IntCollection

Author:
Anton Malykh

Method Summary
 void add(int value)
           
 void addAll(int[] values)
           
 void clear()
           
 boolean contains(int value)
           
 boolean forEach(IntProcessor processor)
           
 boolean isEmpty()
           
 int size()
           
 int[] toArray()
           
 

Method Detail

clear

void clear()

forEach

boolean forEach(IntProcessor processor)

add

void add(int value)

addAll

void addAll(int[] values)

size

int size()

isEmpty

boolean isEmpty()

toArray

int[] toArray()

contains

boolean contains(int value)