MCPcopy Index your code
hub / github.com/RoaringBitmap/roaring / fill

Function fill

util.go:51–55  ·  view source on GitHub ↗
(arr []uint64, val uint64)

Source from the content-addressed store, hash-verified

49}
50
51func fill(arr []uint64, val uint64) {
52 for i := range arr {
53 arr[i] = val
54 }
55}
56
57func fillRange(arr []uint64, start, end int, val uint64) {
58 for i := start; i < end; i++ {

Callers 2

resetToMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…