Function ibc_test_framework::util::array::map_nested_array
source · pub fn map_nested_array<T, R, const SIZE: usize>(
array: [[T; SIZE]; SIZE],
mapper: impl Fn(T) -> Result<R, Error>
) -> Result<[[R; SIZE]; SIZE], Error>
Expand description
Map the elements in the fixed-sized array [[T; SIZE]; SIZE]
.