Instantiates DDS::Sequence < System::Byte >
More...
#include <managed_infrastructure.h>
|
| | ByteSeq () |
| | Constructs an empty sequence of bytes with an initial maximum of zero. More...
|
| |
| | ByteSeq (System::Int32 max) |
| | Constructs an empty sequence of bytes with the given initial maximum. More...
|
| |
| | ByteSeq (ByteSeq^ bytes) |
| | Construct a new sequence containing the given bytes. More...
|
| |
| System::Boolean | ensure_length (System::Int32 length, System::Int32 max) |
| | Set the sequence to the desired length, and resize the sequence if necessary. More...
|
| |
| virtual System::Byte | get_at (System::Int32 i) |
| | Get the i-th element for a const sequence. More...
|
| |
| virtual void | set_at (System::Int32 i, System::Byte val) |
| | Set the i-th element of the sequence. More...
|
| |
| void | loan (array< System::Byte >^ buffer, System::Int32 new_length) |
| | Loan a contiguous buffer to this sequence. More...
|
| |
| virtual void | unloan () |
| | Return the loaned buffer in the sequence and set the maximum to 0. More...
|
| |
| void | from_array (array< System::Byte >^ arr) |
| | Copy elements from an array of elements, resizing the sequence if necessary. The original contents of the sequence (if any) are replaced. More...
|
| |
| void | to_array (array< System::Byte >^ arr) |
| | Copy elements to an array of elements. The original contents of the array (if any) are replaced. More...
|
| |
| System::Boolean | copy_from (Sequence< System::Byte >^ src_seq) |
| | Copy elements from another sequence, resizing the sequence if necessary. More...
|
| |
| virtual System::Boolean | copy_from_no_alloc (Sequence< System::Byte >^ src_seq) |
| | Copy elements from another sequence, only if the destination sequence has enough capacity. More...
|
| |
|
| System::Int32 | length [get, set] |
| | The logical length of this sequence. More...
|
| |
| virtual System::Int32 | maximum [get, set] |
| | The current maximum number of elements that can be stored in this sequence. More...
|
| |
| array< System::Byte >^ | buffer [get] |
| | Return the contiguous buffer of the sequence. More...
|
| |
| System::Boolean | has_ownership [get] |
| | Return the value of the owned flag. More...
|
| |
Instantiates DDS::Sequence < System::Byte >
- Instantiates:
- <<generic>> DDS::Sequence
- See also
- System::Byte
-
DDS::Sequence
◆ ByteSeq() [1/3]
| DDS::ByteSeq::ByteSeq |
( |
| ) |
|
|
inline |
Constructs an empty sequence of bytes with an initial maximum of zero.
◆ ByteSeq() [2/3]
| DDS::ByteSeq::ByteSeq |
( |
System::Int32 |
max | ) |
|
|
inline |
Constructs an empty sequence of bytes with the given initial maximum.
◆ ByteSeq() [3/3]
| DDS::ByteSeq::ByteSeq |
( |
ByteSeq^ |
bytes | ) |
|
|
inline |
Construct a new sequence containing the given bytes.
- Parameters
-
| bytes | the initial contents of this sequence |