(size int64)
| 1011 | } |
| 1012 | |
| 1013 | func newRandomSource(size int64) *randomSource { |
| 1014 | return &randomSource{ |
| 1015 | size: size, |
| 1016 | } |
| 1017 | } |
| 1018 | |
| 1019 | func (r *randomSource) next() byte { |
| 1020 | r.counter++ |
no outgoing calls
no test coverage detected
searching dependent graphs…