pub fn join_input_map<T>(
map: &[Option<T>],
next_map: &[Option<T>],
) -> Vec<Option<T>>Expand description
Joins input/output maps from previous and next operation and returns joined input/output map.
A map is first input map and next_map is second map.