Mojo function
sum
sum(t: IntTuple[origin]) -> Int
Calculate the sum of all values in an IntTuple
.
This function recursively computes the sum of all integer values
in a potentially nested IntTuple
structure.
Args:
- t (
IntTuple[origin]
): TheIntTuple
to sum.
Returns:
The sum of all integer values, or UNKNOWN_VALUE
if any value in the tuple is UNKNOWN_VALUE
.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!