partial interface MLGraphBuilder {
MLOperand concat(sequence<MLOperand> inputs, long axis);
};
We now limit the value of axis in the interval [0, N) where N is the rank of all the inputs. It should be a positive value and we may use unsigned long for axis.