fn timingSafeAdd(comptime T: type, a: []const T, b: []const T, result: []T, endian: Endian) bool
Add two integers serialized as arrays of the same size, in constant time. The result is stored into result, and true is returned if an overflow occurred.
result
true
T: type,
a: []const T,
b: []const T,
result: []T,
endian: Endian,