Click or drag to resize
TrieSETGetEnumerator Method
Returns all of the keys in the set, as an iterator. To iterate over all of the keys in a set named set, use the foreach notation: foreach (Key key in set).

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public IEnumerator<string> GetEnumerator()

Return Value

Type: IEnumeratorString
an iterator to all of the keys in the set

Implements

IEnumerableTGetEnumerator
See Also