Histogram.insert

Insert a range of values into this histogram. This is equivalent to

foreach (value; values) insert(value);

  1. void insert(T value)
  2. void insert(R values)
    struct Histogram(T, Flag!"logIndex" logIndex = No.logIndex)
    void
    insert
    (
    R
    )
    ()
    if (
    isInputRange!R &&
    is(ElementType!R == T)
    )

Meta