RangeQ<T>: Readonly<{
    acc: readonly T[];
    group: Group<T>;
}>

A helper data structure that can find the group sum for a range in constant time.

Type Parameters

  • T

Type declaration

  • acc: readonly T[]

    The accumulating calculated items.

  • group: Group<T>

    The Group instance for T.

Generated using TypeDoc