Changes between Version 1 and Version 2 of Ticket #91, comment 2
- Timestamp:
- Jun 7, 2018, 11:43:41 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #91, comment 2
v1 v2 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); }8 5 }}}