FMIceLinkLinkedListNode Class Reference

Inherits from NSObject
Conforms to T
__covariant
Declared in FMIceLinkLinkedListNode.h
FMIceLinkLinkedListNode.m

Overview

A linked list node.

– initWithItem:

Initializes a new instance of the FMIceLinkLinkedListNode`1 class.
- (instancetype)initWithItem:(T)item

Parameters

item

The item.

Discussion

Initializes a new instance of the FMIceLinkLinkedListNode`1 class.

Declared In

FMIceLinkLinkedListNode.h

+ linkedListNodeWithItem:

Initializes a new instance of the FMIceLinkLinkedListNode`1 class.
+ (FMIceLinkLinkedListNode *)linkedListNodeWithItem:(T)item

Parameters

item

The item.

Discussion

Initializes a new instance of the FMIceLinkLinkedListNode`1 class.

Declared In

FMIceLinkLinkedListNode.h

– next

Gets the next node. Will be null if last.
- (FMIceLinkLinkedListNode<T> *)next

Discussion

Gets the next node. Will be null if last.

Declared In

FMIceLinkLinkedListNode.h

– previous

Gets the previous node. Null if first.
- (FMIceLinkLinkedListNode<T> *)previous

Discussion

Gets the previous node. Null if first.

Declared In

FMIceLinkLinkedListNode.h

– value

Gets the item in the linked list.
- (T)value

Discussion

Gets the item in the linked list.

Declared In

FMIceLinkLinkedListNode.h