Show / Hide Table of Contents

    Class BpTreeEnumerator<T>

    Inheritance
    Object
    BpTreeEnumerator<T>
    Implements
    IEnumerator<T>
    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 BpTreeEnumerator<T> : IEnumerator<T>, IDisposable, IEnumerator where T : IComparable
    Type Parameters
    Name Description
    T

    Constructors

    BpTreeEnumerator(BpTree<T>)

    Declaration
    public BpTreeEnumerator(BpTree<T> tree)
    Parameters
    Type Name Description
    BpTree<T> tree

    Properties

    Current

    Declaration
    public T Current { get; }
    Property Value
    Type Description
    T

    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