()
| 21 | } |
| 22 | |
| 23 | func (r *lockedSource) Int63() (n int64) { |
| 24 | r.lk.Lock() |
| 25 | n = r.src.Int63() |
| 26 | r.lk.Unlock() |
| 27 | return |
| 28 | } |
| 29 | |
| 30 | func (r *lockedSource) Seed(seed int64) { |
| 31 | r.lk.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected