insert_into_nest_at_indices#
- ivy.insert_into_nest_at_indices(nest, indices, values, /)[source]#
Insert a value into the nested item at specified indices with specified values.
- Parameters:
nest (
Iterable
) – The nested object to insert into.indices (
Tuple
) – A tuple of tuples of indices for the indices at which to insert values.values – The new values for inserting.
- Return type:
None