Changes between Initial Version and Version 1 of Ticket #91, comment 2
- Timestamp:
- Jun 7, 2018, 11:42:32 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #91, comment 2
initial v1 1 Thierry says we also want a !? operator:1 Thierry says we also want a couple more operators: 2 2 {{{ 3 3 forall(dtype T | { int ?!=?(const T&, zero_t); }) 4 4 int !?(const T& x) { return !(x != 0); } 5 6 forall(dtype T | { int ?!=?(const T&, zero_t); }) 7 int ?==?(const T& x, zero_t) { return !(x != 0); } 5 8 }}}