libymlMacro QUEUE_INSERT
Source macro_rules! QUEUE_INSERT {
($queue:expr, $index:expr, $value:expr) => { ... };
}
Expand description
Inserts a value into the queue at the specified index.
§Parameters
queue
: A mutable reference to the queue where the value will be inserted.
index
: The index at which the value will be inserted.
value
: The value to be inserted into the queue.
§Return
This macro does not return a value.