Abstract base class for IBag implementations.
abstract class
|
BagBase
|
with
|
<T>
|
||
extends
|
BagConstBase<T>
|
||||
implements
|
IBag<T>
|
||||
base of
|
ComponentGroup
|
||||
ListSet
|
|||||
Set
|
|||||
SortedSetBase
|
|||||
VectorBase
|
The number of elements in this collection.
public
abstract
property
|
Count
{
get
}
|
||
type
|
int32
|
||
value
|
|
The number of elements. | |
inherited
|
BagConstBase.Count
|
Adds the given element to this collection.
public
abstract
method
|
Add
(T element)
|
||
type
|
bool
|
||
params
|
element
|
The element to add. | |
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
ICollector.Add
|
Remarks:
Implementing
methods
shall
return
false
iff
the
element
has
already
been
collected,
i.e.
it
is
contained
in
the
collection.
If
in
doubt,
return
true
.
Adds the given elements to this collection.
public
method
|
AddAll
(IEnumerable<T> elements)
|
||
type
|
bool
|
||
params
|
elements
|
[not-null]
|
The elements to add. |
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
IBag.AddAll
|
Adds the given elements to this collection.
public
virtual
method
|
AddAll
(T[] elements,
int32 first = 0,
int32 count = -1)
|
||
type
|
bool
|
||
params
|
elements
|
[not-null]
|
The elements to add. |
first
|
[>=0]
|
Index of first element to add. | |
count
|
[>=-1]
|
Number
of
elements
to
add.
If
-1
all
elements
from
first
to
the
last
element
are
added.
|
|
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
IBag.AddAll
|
Removes all elements from this collection.
public
abstract
method
|
Clear
()
|
||
implements
|
IBag.Clear
|
Returns if this collection contains the given element.
[Pure]
|
||||
public
abstract
method
|
Contains
(T element)
|
|||
type
|
bool
|
|||
params
|
element
|
The element. | ||
returns
|
true
if
element
is
contained
in
this
collection,
false
if
not.
|
|||
inherited
|
BagConstBase.Contains
|
Returns if this collection contains all given elements.
public
method
|
ContainsAll
(IEnumerable<T> elements)
|
||
type
|
bool
|
||
params
|
elements
|
[not-null]
|
The elements. |
returns
|
true
if
all
elements
are
contained
in
this
collection,
false
if
not.
|
||
inherited
|
BagConstBase.ContainsAll
|
Returns the first enumerated value.
[Pure]
|
||||
public
virtual
method
|
First
()
|
|||
type
|
T
|
|||
returns
|
The first enumerated value. | |||
inherited
|
BagConstBase.First
|
Exceptions:
public
abstract
method
|
GetEnumerator
()
|
||
type
|
IEnumerator<T>
|
||
inherited
|
EnumerableBase.GetEnumerator
|
Returns the last enumerated value.
[Pure]
|
||||
public
virtual
method
|
Last
()
|
|||
type
|
T
|
|||
returns
|
The last enumerated value. | |||
inherited
|
BagConstBase.Last
|
Exceptions:
Removes the given element from this collection.
public
abstract
method
|
Remove
(T element)
|
||
type
|
bool
|
||
params
|
element
|
The element to remove. | |
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
IBag.Remove
|
Removes the given elements from this collection.
public
method
|
RemoveAll
(IEnumerable<T> elements)
|
||
type
|
bool
|
||
params
|
elements
|
[not-null]
|
The elements to remove. |
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
IBag.RemoveAll
|
Removes
all
elements
from
this
collection
for
which
the
given
predicate
evaluates
to
true
.
public
virtual
method
|
RemoveWhere
(PredicateDelegate<T> predicate)
|
||
type
|
bool
|
||
params
|
predicate
|
[not-null]
|
The predicate to use. |
returns
|
true
if
the
collection
has
changed,
false
if
not. |
||
implements
|
IBag.RemoveWhere
|
Returns the elements of this enumerable object as a fresh array.
[Pure]
|
||||
public
method
|
ToArray
()
|
|||
type
|
T[]
|
|||
returns
|
|
The array of elements. | ||
inherited
|
BagConstBase.ToArray
|
Returns the elements of this collection as an array.
public
abstract
method
|
ToArrayCopy
(T[] array,
int32 offset = 0)
|
||
type
|
T[]
|
||
params
|
array
|
[not-null]
|
The output array. |
offset
|
[>=0]
|
Offset
into
array.
Defaults
to
0 .
|
|
returns
|
|
The filled array. | |
inherited
|
BagConstBase.ToArrayCopy
|
Remarks:
The elements in this collection will be copied into the given array, starting at the array index specified by offset.
Returns the elements of this enumerable object as a list.
[Pure]
|
||||
public
virtual
method
|
ToArrayList
()
|
|||
type
|
IArrayVector<T>
|
|||
returns
|
|
The list of elements. | ||
inherited
|
BagConstBase.ToArrayList
|
Returns the elements of this enumerable object as a list.
[Pure]
|
||||
public
virtual
method
|
ToList
()
|
|||
type
|
IVectorConst<T>
|
|||
returns
|
|
The list of elements. | ||
inherited
|
BagConstBase.ToList
|
protected
constructor
|
BagBase
()
|
protected
constructor
|
BagBase
(EqualsDelegate<T> equals)
|
||
params
|
equals
|
protected
constructor
|
BagBase
(CompareDelegate<T> compare)
|
||
params
|
compare
|
Compares the given collection elements.
protected
virtual
method
|
CompareElements
(T a,
T b)
|
||
type
|
int32
|
||
params
|
a
|
First collection element. | |
b
|
Second collection element. | ||
returns
|
|
if
a
is
less
than
b.
[=0] if a is equal to b. [>0] if a is greater than b. |
|
inherited
|
BagConstBase.CompareElements
|
Remarks:
The default implementation invokes the CompareDelegate that has been specified for this collection.
protected
method
|
EmptyEnumeration
(string source)
|
||
type
|
FailedAssertionException
|
||
params
|
source
|
||
inherited
|
EnumerableBase.EmptyEnumeration
|
Checks if the given collection elements are equal.
protected
virtual
method
|
EqualsElements
(T a,
T b)
|
||
type
|
bool
|
||
params
|
a
|
First collection element. | |
b
|
Second collection element. | ||
returns
|
true
if
the
collection
elements
are
equal,
false
if
not. |
||
inherited
|
BagConstBase.EqualsElements
|
Remarks:
The
default
implementation
invokes
the
EqualsDelegate
that
has
been
specified
for
this
collection.
If
a
CompareDelegate
has
been
given
instead,
it
will
be
invoked
and
its
return
value
tested
against
0
.