Table of Contents

Struct np.NDChunkIter<T>.Enumerator

Namespace
NumSharp
Assembly
NumSharp.dll

The cursor — one Span<T> per inner loop.

public ref struct np.NDChunkIter<T>.Enumerator
Inherited Members

Properties

Current

The current inner loop, as a span over the operand's own memory.

public Span<T> Current { get; }

Property Value

Span<T>

Methods

Dispose()

Frees the unmanaged iterator state. foreach calls this; hand-driven MoveNext() loops must call it themselves.

public void Dispose()

MoveNext()

Advance one chunk.

public bool MoveNext()

Returns

bool