Iterates all set bits in this set and takes action on them.
(Action<R> action)
| 273 | * Iterates all set bits in this set and takes action on them. |
| 274 | */ |
| 275 | default <R> R iterateBits(Action<R> action) { |
| 276 | int i = nextSetBit(0); |
| 277 | while (i != -1) { |
| 278 | if (!action.accept(i)) { |
no outgoing calls
no test coverage detected