What does <- mean in Java? -
i ran across example , realized don't understand what's going on here
if (a <- b) { return false; }
what <-
in java?
see in way:
if (a < -b) { return false; }
there no <-
operator in java.
related, i've found question: what "-->" operator in c++?
Comments
Post a Comment