LinkedListQueue.contains

Checks whether a value exists in queue in O(n).

class LinkedListQueue(T, alias gc_tracking_policy = GCTrackingPolicy.refTypesOnly)
bool
contains
()

Parameters

value T

value to find

Return Value

Type: bool

true if value exists, false otherwise

Meta