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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -