Function ibc_test_framework::util::array::into_nested_vec
source · pub fn into_nested_vec<T, const SIZE: usize>(
array: [[T; SIZE]; SIZE]
) -> Vec<Vec<T>>
Expand description
Converts a fixed-sized nested array [[T; SIZE]; SIZE]
into a nested
vector Vec<Vec<T>>
.