I tried to use a boolean operator for an array operation :

a[] = b[] < c[];

It compiles but seems to only fill a[] with the result of b[0] < c[0].
Is there any "rational" reason to that?
And is there any way to use boolean operator for array operations?

Reply via email to