Mojo function
shallow_apply
shallow_apply[func: fn[ImmutableOrigin](IntTuple[$0]) -> Int](t: IntTuple[origin]) -> IntTuple
Apply a function to each top-level element of an IntTuple
.
Unlike apply()
, this function only operates on the immediate children
of the input tuple without recursing into nested tuples.
Parameters:
- func (
fn[ImmutableOrigin](IntTuple[$0]) -> Int
): Function that takes anIntTuple
and returns anInt
.
Args:
- t (
IntTuple[origin]
): TheIntTuple
whose elements will be transformed.
Returns:
A new IntTuple
with the function applied to each top-level element.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!