module Infix:sig
..end
val (+|) : int array -> int array -> int array
Returns the sum of the passed arrays, using saturation arithmetic to sum
elements. The length of the returned array is the maximum of the lengths
of the passed arrays, missing elements from the smallest array being
supposed to be equal to 0
.