Changeset a493682 for src/libcfa/iterator
- Timestamp:
- Jul 17, 2017, 1:55:22 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- b46e3bd
- Parents:
- bf30ab3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iterator
rbf30ab3 ra493682 19 19 trait iterator( otype iterator_type, otype elt_type ) { 20 20 // point to the next element 21 // iterator_type ?++( iterator_type *);22 iterator_type ++?( iterator_type *);23 iterator_type --?( iterator_type *);21 // iterator_type ?++( iterator_type & ); 22 iterator_type ++?( iterator_type & ); 23 iterator_type --?( iterator_type & ); 24 24 25 25 // can be tested for equality with other iterators
Note:
See TracChangeset
for help on using the changeset viewer.