(w, h int)
| 12 | } |
| 13 | |
| 14 | func NewHeatmap(w, h int) *Heatmap { |
| 15 | count := make([]uint64, w*h) |
| 16 | return &Heatmap{w, h, count} |
| 17 | } |
| 18 | |
| 19 | func (h *Heatmap) Clear() { |
| 20 | for i := range h.Count { |
no outgoing calls
no test coverage detected
searching dependent graphs…