pub fn tensor_array_read_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    handle: &T0,
    index: &T1,
    flow_in: &T2
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for TensorArrayReadV2::new().call(&ctx, &handle, &index, &flow_in).

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