Thread: A "?" question
View Single Post
  #5  
Old 01-13-2003, 07:01 PM
busyrobot busyrobot is offline
Registered User
busyrobot's Avatar
Join Date: Dec 2002
Posts: 978
busyrobot is on a distinguished road
In many languages, "a ? b : c;" functions faster than
if (a) {b;} else {c;} because of processor-specific compiling, even in byte code languages like Java.

Does this hold true in GraalScript?
Reply With Quote