Changes in libcfa/src/enum.cfa [525f7ad:85855b0]
- File:
-
- 1 edited
-
libcfa/src/enum.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/enum.cfa
r525f7ad r85855b0 13 13 return os | type_name(e) | "." | labelE(e); 14 14 } 15 16 forall(ostype & | basic_ostream(ostype), E, V| CfaEnum(E, V)) {17 int ?==?(E l, E r) { return posE(l) == posE(r); }18 int ?<=?(E l, E r) { return posE(l) <= posE(r); }19 int ?>=?(E l, E r) { return posE(l) >= posE(r); }20 int ?<?(E l, E r) { return posE(l) < posE(r); }21 int ?>?(E l, E r) { return posE(l) > posE(r); }22 }
Note:
See TracChangeset
for help on using the changeset viewer.