SinglyLinkedList #107

Closed
opened 2020-06-17 20:50:33 +02:00 by muellerr · 0 comments
Owner

I think usage is a bit unintuitive right now. I think it would be nice to use it like this:

MyClass class1;
MyClass class2;
SinglyLinkedList<MyClass> myList;
myList.append(&class1); // this sets class1 as start
myList.append(&class2); 

Of course, the old way to use them should still be possible.

I think usage is a bit unintuitive right now. I think it would be nice to use it like this: ```cpp MyClass class1; MyClass class2; SinglyLinkedList<MyClass> myList; myList.append(&class1); // this sets class1 as start myList.append(&class2); ``` Of course, the old way to use them should still be possible.
muellerr added the
feature
label 2020-06-17 20:50:33 +02:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: fsfw/fsfw#107
No description provided.