IFreeList.get

Gets an item from the free list.

interface IFreeList(T)
T
get
(
lazy T new_item
)

Parameters

new_item T

new item, will only be evaluated in the case when no items are available in the free list

Return Value

Type: T

new item (either popped from free list or new_item)

Meta