pub fn tensor_list_concat_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    input_handle: &T0,
    element_shape: &T1,
    leading_dims: &T2
) -> Result<[TensorHandle<'a>; 2]>
Expand description

Shorthand for TensorListConcatV2::new().call(&ctx, &input_handle, &element_shape, &leading_dims).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/TensorListConcatV2