(c container)
| 2724 | } |
| 2725 | |
| 2726 | func newRunContainer16FromContainer(c container) *runContainer16 { |
| 2727 | switch x := c.(type) { |
| 2728 | case *runContainer16: |
| 2729 | return x.Clone() |
| 2730 | case *arrayContainer: |
| 2731 | return newRunContainer16FromArray(x) |
| 2732 | case *bitmapContainer: |
| 2733 | return newRunContainer16FromBitmapContainer(x) |
| 2734 | } |
| 2735 | panic("unsupported container type") |
| 2736 | } |
| 2737 | |
| 2738 | // And finds the intersection of rc and b. |
| 2739 | func (rc *runContainer16) And(b *Bitmap) *Bitmap { |
nothing calls this directly
no test coverage detected
searching dependent graphs…