Hi all,
Someone can suggest me the best way for testing the presence of an
element in an array?
Coming from python, something like...
if( x in array_of_x && y in array_of_y ){
...
}
The workaround, apart from using a simple 'for' loop, is to use an
associative array, and test for key...
---
Paolo