epic rust mention in function docs !!!!
This commit is contained in:
parent
4caa80580b
commit
2e62adfa57
2 changed files with 4 additions and 0 deletions
|
@ -23,6 +23,8 @@ typedef struct {
|
|||
|
||||
LinkedList linked_list_new(size_t element_size);
|
||||
|
||||
// value is copied into a local queue-owned variable
|
||||
// in rust terms - value is only borrowed
|
||||
void linked_list_insert(LinkedList *l, void *value);
|
||||
|
||||
LinkedList linked_list_merge(LinkedList l1, LinkedList l2);
|
||||
|
|
|
@ -24,6 +24,8 @@ typedef struct {
|
|||
|
||||
DoublyLinkedList doubly_linked_list_new(size_t element_size);
|
||||
|
||||
// value is copied into a local queue-owned variable
|
||||
// in rust terms - value is only borrowed
|
||||
void doubly_linked_list_insert(DoublyLinkedList *l, void *value);
|
||||
|
||||
DoublyLinkedList doubly_linked_list_merge(DoublyLinkedList l1, DoublyLinkedList l2);
|
||||
|
|
Loading…
Reference in a new issue