Print writes textual output of the histogram values.
(w io.Writer)
| 104 | |
| 105 | // Print writes textual output of the histogram values. |
| 106 | func (h *Histogram) Print(w io.Writer) { |
| 107 | h.PrintWithUnit(w, 1) |
| 108 | } |
| 109 | |
| 110 | // PrintWithUnit writes textual output of the histogram values . |
| 111 | // Data in histogram is divided by a Unit before print. |
no test coverage detected