source: translator/examples/array.h @ 17cd4eb

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 17cd4eb was 134b86a, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

add compiler flag to driver, update examples, fix unnamed bit fields

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#ifndef ARRAY_H
2#define ARRAY_H
3
4//#include "iterator.h"
5
6// An array has contiguous elements accessible in any order using integer indicies. The first
7// element has index 0.
8context array( type array_type, type elt_type ) {
9    lvalue elt_type ?[?]( array_type, int );
10};
11
12// A bounded array is an array that carries its maximum index with it.
13context bounded_array( type array_type, type elt_type | array( array_type, elt_type ) ) {
14    int last( array_type );
15};
16
17// implement iterator_for
18
19typedef int array_iterator;
20
21/// forall( type array_type, elt_type | bounded_array( array_type, elt_type ) )
22/// [ array_iterator begin, array_iterator end ] get_iterators( array_type );
23
24
25// A bounded array can be iterated over by using a pointer to the element type. These functions
26// return iterators corresponding to the first element and the one-past-the-end element, STL-style.
27forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) )
28elt_type *begin( array_type );
29
30forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) )
31elt_type *end( array_type );
32
33#endif // ARRAY_H
Note: See TracBrowser for help on using the repository browser.