Next: Data Type Generic List Back Functions, Previous: Data Type Generic List Functions, Up: The List Library [Index]
object l_front(list l);
is the data in the first position in the l list
void l_insert(list l,);
inserts data of the type and value described by the second argument in the first position in the l list
list lf_delete(list l);
is l, deletes the first element in the l list
object lf_get(&, list l);
is the data in the first position in the l list, sets the first argument as the same data (data is linked if allowed, copied otherwise)
void lf_link(list l,);
inserts a reference to or a copy of the data described by the second argument in the first position in the l list (references are made where data types allow)
See Referable Objects.
object lf_pick(list l);
is the data in the first position in the l list, the data is removed from the list
void lf_push(list l,);
inserts data of the type and value described by the second argument in the first position in the l list
object lf_query(list l);
is the data in the first position in the l list (same as ‘l_front’)
object lf_yank(&, list l);
is the data in the first position in the l list, sets the first argument as the same data and removes it from the list
Next: Data Type Generic List Back Functions, Previous: Data Type Generic List Functions, Up: The List Library [Index]