bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gawk] Order of operations


From: ghofulpo
Subject: [bug-gawk] Order of operations
Date: Wed, 15 Jun 2011 09:11:47 -0700 (PDT)

Is there a list of order of operations in Gawk?  The reason I am asking is that I was trying to execute:

if ( !x in y)

and rather than executing:
if ( !( x in y))
it did:
if ( (!x) in y )

I couldn't find any reference to order of operations that included the 'in' operator (if it really is an operator).

James

reply via email to

[Prev in Thread] Current Thread [Next in Thread]