DynamicAny::DynSequence - The API for dynamic sequences
See DynamicAny::DynAny.
This is a specialization of DynAy specifically for sequences.
get_elements
- Returns an array of CORBA::Any's that represent the
values stored in this DynArray.
get_elements_as_dyn_any
- Returns an array of DynAny's that represent
the values stored in this DynArray.
get_length
- Returns the length of the sequence.
set_elements
- Set the values stored in this DynArray to the array of
CORBA::Any passed in. A DynamicAny::DynAny::InvalidValue exception will
be thrown if there is a bounds and the number of elements in the provided
array exceeds the bounds.
set_elements_as_dyn_any
- Set the values stored in this DynArray to
the array of DynAny's passed in. A DynamicAny::DynAny::InvalidValue
exception will be thrown if there is a bounds and the number of elements in
the provided array exceeds the bounds.
set_length
- Set the length of the sequence. A
DynamicAny::DynAny::InvalidValue will be thrown if there is a bounds and
the new size exceeds the bounds. If the new size is larger than the
current size, the sequence is extended with default initialized values.