@leanchuck/core - v0.1.1
    Preparing search index...

    Interface ParetoResult<T>

    The full result of a Pareto pass.

    interface ParetoResult<T> {
        items: ParetoItem<T>[];
        total: number;
        vitalCount: number;
        trivialCount: number;
        cutoff: number;
    }

    Type Parameters

    • T

      The shape of the source item.

    Index

    Properties

    items: ParetoItem<T>[]

    Contributors sorted largest → smallest, each fully classified.

    total: number

    Sum of every contributor's value.

    vitalCount: number

    Count of vital contributors.

    trivialCount: number

    Count of trivial contributors.

    cutoff: number

    The effective cutoff (threshold + buffer) that was applied.