Header menu logo B2R2

LRUCache<'K, 'V> Type

Least Recently Used Cache that does not support concurrency.

Constructors

Constructor Description

LRUCache(capacity)

Full Usage: LRUCache(capacity)

Parameters:
    capacity : int

Returns: LRUCache<'K, 'V>
capacity : int
Returns: LRUCache<'K, 'V>

Instance members

Instance member Description

this.Add

Full Usage: this.Add

Parameters:
    key : 'K
    value : 'V

key : 'K
value : 'V

this.Clear

Full Usage: this.Clear

this.Count

Full Usage: this.Count

Returns: int
Returns: int

this.TryGet

Full Usage: this.TryGet

Parameters:
    key : 'K
    refCount : byref<int>

Returns: Result<'V, ErrorCase>

Try to retrieve a value as well as its ref count.

key : 'K
refCount : byref<int>
Returns: Result<'V, ErrorCase>

this.TryGet

Full Usage: this.TryGet

Parameters:
    key : 'K

Returns: Result<'V, ErrorCase>
key : 'K
Returns: Result<'V, ErrorCase>

Type something to start searching.