comparison liboctave/boolNDArray.h @ 9607:1be3c73ed7b5

reuse temporary arrays in nested expressions
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 03 Sep 2009 08:48:51 +0200
parents e5f7aee2ab8c
children b29504415a2e
comparison
equal deleted inserted replaced
9606:a04352386a6b 9607:1be3c73ed7b5
56 } 56 }
57 57
58 // unary operations 58 // unary operations
59 59
60 boolNDArray operator ! (void) const; 60 boolNDArray operator ! (void) const;
61
62 boolNDArray& invert (void);
61 63
62 bool any_element_is_nan (void) const { return false; } 64 bool any_element_is_nan (void) const { return false; }
63 65
64 // FIXME -- this is not quite the right thing. 66 // FIXME -- this is not quite the right thing.
65 67