A linked list node. More...
Instance Methods | |
| (FMLiveSwitchLinkedListNode< T > *) | - next |
| Gets the next node. More... | |
| (FMLiveSwitchLinkedListNode< T > *) | - previous |
| Gets the previous node. More... | |
| (T) | - value |
| Gets the item in the linked list. More... | |
Class Methods | |
| (FMLiveSwitchLinkedListNode *) | + linkedListNodeWithItem: |
| Initializes a new instance of the FMLiveSwitchLinkedListNode`1 class. More... | |
Protected Attributes | |
| __pad0__: NSObject- (instancetype) initWithItem:(T)item | |
A linked list node.
| + (FMLiveSwitchLinkedListNode*) linkedListNodeWithItem: | (T) | item |
Initializes a new instance of the FMLiveSwitchLinkedListNode`1 class.
| item | The item. |
| - (FMLiveSwitchLinkedListNode<T>*) next |
Gets the next node.
Will be null if last.
| - (FMLiveSwitchLinkedListNode<T>*) previous |
Gets the previous node.
Null if first.
| - T value |
Gets the item in the linked list.
|
protected |