Type Alias TreeMapReduceCallback<K, V, A, SELF>

TreeMapReduceCallback<K, V, A, SELF>: ((acc: A, value: V | undefined, key: K, index: number, map: SELF) => A)

Reducer callback used by TreeMap.

SELF is intentionally generic to avoid type-layer circular imports.

Type Parameters

  • K
  • V
  • A
  • SELF