| 138 | } |
| 139 | |
| 140 | type fractionMatcher struct { |
| 141 | fraction int64 // real fraction is fraction/1,000,000. |
| 142 | } |
| 143 | |
| 144 | func newFractionMatcher(fraction uint32) *fractionMatcher { |
| 145 | return &fractionMatcher{fraction: int64(fraction)} |
nothing calls this directly
no outgoing calls
no test coverage detected