(d *Dataset, nextDataType reflect.Type)
| 133 | } |
| 134 | |
| 135 | func add1ShardTo1Step(d *Dataset, nextDataType reflect.Type) (ret *Dataset, step *Step) { |
| 136 | ret = d.context.newNextDataset(len(d.Shards), nextDataType) |
| 137 | step = d.context.AddOneToOneStep(d, ret) |
| 138 | return |
| 139 | } |
| 140 | |
| 141 | // the value over the outChan is always reflect.Value |
| 142 | // but the inner values are always actual interface{} object |
no test coverage detected