| 5 | import com.winvector.variables.VariableEncodings; |
| 6 | |
| 7 | public final class ExampleRowIterable extends AdapterIterableBase<ExampleRow> { |
| 8 | |
| 9 | public ExampleRowIterable(final VariableEncodings adapter, final Iterable<BurstMap> rawSource) { |
| 10 | super(adapter,rawSource); |
| 11 | } |
| 12 | |
| 13 | @Override |
| 14 | protected ExampleRow buildRow(final BurstMap row) { |
| 15 | return buildSparseRow(row); |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected