Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 493 Bytes

batch.concat.md

File metadata and controls

24 lines (17 loc) · 493 Bytes

Batch.concat

The concat function is established to concatenate the batch result to another.

Sample

var batch = new Batch();
var batch1 = new Batch();
batch.concat(batch1);

API

CallingReturning
Batch . concat ( batch )Batch
ParametersTypeDescription
batchBatchThe sub batch result.