Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 490 Bytes

batch.concat.md

File metadata and controls

23 lines (17 loc) · 490 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.