Interface IBin<T>

interface IBin<T> {
    count: number;
    x0: T;
    x1: T;
}

Type Parameters

  • T

Properties

Properties

count: number

bin count

x0: T

bin start

x1: T

bin end