lazyIOR is described (not yet implemented) in this nice note from @lemire on https://github.com/RoaringBitmap/roaring/pull/70#issuecomment-263613737 Description of lazyOR and lazyIOR from @lemire: Lazy functions are optional and can be simply wrapper around non-lazy functions. The idea of "lazine
(a container)
| 2406 | // the answer at the beginning. What this |
| 2407 | // trick does is minimize memory allocations. |
| 2408 | func (rc *runContainer16) lazyIOR(a container) container { |
| 2409 | // not lazy at the moment |
| 2410 | return rc.ior(a) |
| 2411 | } |
| 2412 | |
| 2413 | // lazyOR is described above in lazyIOR. |
| 2414 | func (rc *runContainer16) lazyOR(a container) container { |