[This is preliminary documentation and is subject to change.]

Checks whether the trie contains a given value. This method uses the value enumerator and runs in O(n).

Namespace: fCraft
Assembly: fCraft (in fCraft.dll) Version: 0.6.3.5 (0.6.3.5)

Syntax

   
 C# 
public bool ContainsValue(
	T value
)

Parameters

value
T
Value to search for.

Return Value

True if the trie contains at least one copy of the value.

See Also