pub fn parallel_interleave_dataset_v2<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
    input_dataset: O0,
    other_arguments: O1,
    cycle_length: O2,
    block_length: O3,
    num_parallel_calls: O4,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for ParallelInterleaveDatasetV2::new().build(input_dataset, other_arguments, cycle_length, block_length, num_parallel_calls, scope).