Method Acquire
Acquire(T)
Creates or returns a LinkedListNode of the requested type and set the value.
선언
public LinkedListNode<T> Acquire(T val)
파라미터
타입 | 이름 | 설명 |
---|---|---|
T | val | The value to set to returned node to. |
반환
타입 | 설명 |
---|---|
LinkedListNode<T> | A LinkedListNode with the value set to val. |