Skip to main content

interface GenSource<E>

undocumented

Type parameters

NameDescription
Eundocumented

Properties

entries

undocumented

Definition

entries: readonly E[] | null;

entrySets

undocumented

Definition

entrySets: readonly GenBlockBuilderEntry<E>[] | null;

Methods

forEach

undocumented

Definition

forEach(f: (entry: E, index: number, halt: () => void) => void, options?: {
    state?: TraverseState;
  }): void;

Parameters

NameTypeDescription
f(entry: E, index: number, halt: () => void) => void
options{
    state?: TraverseState;
  }