insert_before
Description:
[
Version ( since =
"2.4" ) ]
public void insert_before (
List<
G> sibling,
owned G data)
Inserts data into this before sibling.
sibling must be part of this. Since GLib 2.44 a null
sibling pushes the data at the tail of the queue.
Parameters:
| this |
a Queue
|
| sibling |
a List link that must be part of this, or
null to push at the tail of the queue.
|
| data |
the data to insert
|