Show / Hide Table of Contents

    Class OpenAddressHashSetEnumerator<V>

    Inheritance
    Object
    OpenAddressHashSetEnumerator<V>
    Implements
    IEnumerator<HashSetNode<V>>
    IDisposable
    IEnumerator
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.DataStructures
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class OpenAddressHashSetEnumerator<V> : IEnumerator<HashSetNode<V>>, IDisposable, IEnumerator
    Type Parameters
    Name Description
    V

    Constructors

    OpenAddressHashSetEnumerator(HashSetNode<V>[], Int32)

    Declaration
    public OpenAddressHashSetEnumerator(HashSetNode<V>[] hashArray, int length)
    Parameters
    Type Name Description
    HashSetNode<V>[] hashArray
    Int32 length

    Properties

    Current

    Declaration
    public HashSetNode<V> Current { get; }
    Property Value
    Type Description
    HashSetNode<V>

    Methods

    Dispose()

    Declaration
    public void Dispose()

    MoveNext()

    Declaration
    public bool MoveNext()
    Returns
    Type Description
    Boolean

    Reset()

    Declaration
    public void Reset()

    Explicit Interface Implementations

    IEnumerator.Current

    Declaration
    object IEnumerator.Current { get; }
    Returns
    Type Description
    Object

    Implements

    System.Collections.Generic.IEnumerator<T>
    System.IDisposable
    System.Collections.IEnumerator
    Back to top Generated by DocFX