SparkseeNet 6.1.0
com.sparsity.sparksee.gdb.Int32List Class Reference

Sparksee 32-bit signed integer list. More...

Public Member Functions

 Int32List (int[] list)
 Creates a new instance from an integer array.
 
 Int32List (System.Collections.Generic.ICollection< int > col)
 Creates a new instance from an integer collection.
 
void Clear ()
 Clears the list.
 
 Int32List ()
 Constructor.
 
com.sparsity.sparksee.gdb.Int32ListIterator Iterator ()
 Gets a new Int32ListIterator.
 
void Add (int value)
 Adds an 32-bit signed integer at the end of the list.
 
int Count ()
 Number of elements in the list.
 

Detailed Description

Sparksee 32-bit signed integer list.

It stores a 32-bit signed integer list.

Use Int32ListIterator to access all elements into this collection.

Author
Sparsity Technologies http://www.sparsity-technologies.com

Constructor & Destructor Documentation

◆ Int32List() [1/3]

com.sparsity.sparksee.gdb.Int32List.Int32List ( int[] list)

Creates a new instance from an integer array.

Parameters
listInteger array to initialize the instance.

◆ Int32List() [2/3]

com.sparsity.sparksee.gdb.Int32List.Int32List ( System.Collections.Generic.ICollection< int > col)

Creates a new instance from an integer collection.

Parameters
colCollection to initialize the instance.

◆ Int32List() [3/3]

com.sparsity.sparksee.gdb.Int32List.Int32List ( )

Constructor.

This creates an empty list.

Member Function Documentation

◆ Add()

void com.sparsity.sparksee.gdb.Int32List.Add ( int value)

Adds an 32-bit signed integer at the end of the list.

Parameters
value[in] The integer.

◆ Count()

int com.sparsity.sparksee.gdb.Int32List.Count ( )

Number of elements in the list.

Returns
Number of elements in the list.

◆ Iterator()

com.sparsity.sparksee.gdb.Int32ListIterator com.sparsity.sparksee.gdb.Int32List.Iterator ( )

Gets a new Int32ListIterator.

Returns
Int32ListIterator instance.