Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
The "sum" instructions is shorter (in number of characters) but I think that it is slower (in execution time).
It requires three evaluations of the condition whereas the "and" is supposed to return FALSE if the first condition is FALSE, without evaluating the two others.
Yes, Nicolas, it sure is. This is just an example of using boolean return in mathematical operations
I've seen alot of studies with statements like:
def c = if a>b then 1 else 0;
actually there is no need to assign 1 or 0 such way, the optimized equation would be simply
def c = a>b;