Click or drag to resize
SETKeyGetEnumerator Method
Returns all of the keys in this 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<Key> GetEnumerator()

Return Value

Type: IEnumeratorKey
an iterator to all of the keys in this set

Implements

IEnumerableTGetEnumerator
See Also