Skip to main content
Log in

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 an IntTuple and returns an Int.

Args:

  • t (IntTuple[origin]): The IntTuple whose elements will be transformed.

Returns:

A new IntTuple with the function applied to each top-level element.