add boolean || and && operators

This commit is contained in:
Gael Guennebaud
2011-05-31 22:17:34 +02:00
parent b495203310
commit 35c1158ee3
5 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
Array3d v(-1,2,1), w(-3,2,3);
cout << (v<w) && (v>0) << endl;