diff --git a/j/operators.j b/j/operators.j index f2b8df8f98a63..f37a22c486370 100644 --- a/j/operators.j +++ b/j/operators.j @@ -19,7 +19,7 @@ isequal(x,y) = is(x,y) # these definitions allow Number types to implement # == and < instead of isequal and isless, which is more idiomatic: isequal(x::Number, y::Number) = x==y -isless(x::Number, y::Number) = x y ? x : y min(x,y) = x < y ? x : y