Skip to main content
Log in

Mojo function

reduce

reduce[: origin.set, //, reducer: fn[ImmutableOrigin](a: Int, b: IntTuple[$0]) capturing -> Int](t: IntTuple[origin], initializer: Int) -> Int

Apply a reduction function to an IntTuple with an initial value.

This function iterates through each element of the IntTuple and applies the provided reduction function cumulatively, starting with the initializer.

Parameters:

  • reducer (fn[ImmutableOrigin](a: Int, b: IntTuple[$0]) capturing -> Int): A function that combines the accumulated result with the next element.

Args:

  • t (IntTuple[origin]): The IntTuple to reduce.
  • initializer (Int): The initial value for the reduction operation.

Returns:

The final accumulated result after applying the reduction function to all elements in the IntTuple.