VARP argmin(VARP x, {int? axis}) { if (axis == null) { return F.argMin(ravel(x), 0); } return F.argMin(x, axis); }