ByteArray - Arrays of bytes.
More...
#include <glibmm/bytearray.h>
ByteArray - Arrays of bytes.
ByteArray is a mutable array of bytes, to provide arrays of bytes which grow automatically as elements are added.
To create a new ByteArray use create(). To add elements to a ByteArray, use append(), and prepend().
To set the size of a ByteArray, use set_size().
- Since glibmm 2.36:
◆ SlotCompare
A Slot type to compare two elements in the array.
The slot should return -1 if the first value is less than the second, 0 if they are equal and 1 if the first value is greater than the second.
Slot Prototype:
int compare(const guint8* first, const guint8* second);
◆ ByteArray() [1/2]
Glib::ByteArray::ByteArray |
( |
| ) |
|
|
delete |
◆ ByteArray() [2/2]
◆ append()
Adds the given bytes to the end of the ByteArray.
The array will grow in size automatically if necessary.
- Parameters
-
data | The byte data to be added. |
len | The number of bytes to add. |
- Returns
- The ByteArray.
◆ create()
◆ get_data() [1/2]
guint8 * Glib::ByteArray::get_data |
( |
| ) |
|
◆ get_data() [2/2]
◆ get_type()
Get the GType for this class, for use with the underlying GObject type system.
◆ gobj() [1/2]
Provides access to the underlying C instance.
◆ gobj() [2/2]
Provides access to the underlying C instance.
◆ gobj_copy()
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
◆ operator delete()
◆ operator=()
◆ prepend()
Adds the given data to the start of the ByteArray.
The array will grow in size automatically if necessary.
- Parameters
-
data | The byte data to be added. |
len | The number of bytes to add. |
- Returns
- The ByteArray.
◆ reference()
void Glib::ByteArray::reference |
( |
| ) |
const |
Increment the reference count for this object.
You should never need to do this manually - use the object via a RefPtr instead.
◆ remove_index()
Removes the byte at the given index from a ByteArray.
The following bytes are moved down one place.
- Parameters
-
index | The index of the byte to remove. |
- Returns
- The ByteArray.
◆ remove_index_fast()
Removes the byte at the given index from a ByteArray.
The last element in the array is used to fill in the space, so this function does not preserve the order of the ByteArray. But it is faster than g_byte_array_remove_index().
- Parameters
-
index | The index of the byte to remove. |
- Returns
- The ByteArray.
◆ remove_range()
Removes the given number of bytes starting at the given index from a ByteArray.
The following elements are moved to close the gap.
- Since glibmm 2.4:
- Parameters
-
index | The index of the first byte to remove. |
length | The number of bytes to remove. |
- Returns
- The ByteArray.
◆ set_size()
Sets the size of the ByteArray, expanding it if necessary.
- Parameters
-
- Returns
- The ByteArray.
◆ size()
guint Glib::ByteArray::size |
( |
| ) |
const |
◆ sort()
Like g_byte_array_sort(), but the comparison function takes an extra user data argument.
- Parameters
-
◆ unreference()
void Glib::ByteArray::unreference |
( |
| ) |
const |
Decrement the reference count for this object.
You should never need to do this manually - use the object via a RefPtr instead.
◆ wrap()
A Glib::wrap() method for this object.
- Parameters
-
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |
- Returns
- A C++ instance that wraps this C instance.