LSCollection Class¶
- class LSCollection¶
Value type for collection expressions (lists or sets). Such a value is obtained with
LSExpression.value
or withLSSolution.getValue()
.- See:
- See:
Summary¶
Adds the given value to this collection. |
|
Removes all values of this collection. |
|
Returns the number of values in the collection. |
|
Returns true if the collection contains the given value, false otherwise. |
Returns an iterator than can be used within a for statement. |
|
Indexer. |
Methods¶
- LSCollection.add(val)¶
Adds the given value to this collection. Only allowed in state
STOPPED
. This function will fail if the given value is not an integer, is outside of the domain of the list or if this value is already included in this list (keep in mind that a list cannot contain twice the same value).
- LSCollection.clear()¶
Removes all values of this collection. Only allowed in state
STOPPED
.
- LSCollection.count()¶
Returns the number of values in the collection. Elements in collections are indexed from 0 to count()-1.
- Returns:
Number of values in the collection.
- Return type:
int
- LSCollection.contains(value)¶
Returns true if the collection contains the given value, false otherwise. An exception will be thrown if the provided value is not an integer.
- Parameters:
value (int) – Element whose presence in this collection is to be tested.
- Return type:
bool
Overloaded operators¶
- LSCollection.iterator()¶
Returns an iterator than can be used within a
for
statement.
- LSCollection.index(position)¶
Indexer. Gets the value at the given position.
- Parameters:
position (int) – The considered position. Must be non negative and striclty smaller than the number of values in the collection.
- Returns:
The value at the given position
- Return type:
int