ADT
        aaron-thesis
        arm-eh
        ast-experimental
        cleanup-dtors
        ctor
        deferred_resn
        demangler
        enum
        forall-pointer-decay
        gc_noraii
        jacob/cs343-translation
        jenkins-sandbox
        memory
        new-ast
        new-ast-unique-expr
        new-env
        no_list
        persistent-indexer
        pthread-emulation
        qualifiedEnum
        resolv-new
        string
        with_gc
      
      
        
          | Last change
 on this file since fe3b61b was             134b86a, checked in by Peter A. Buhr <pabuhr@…>, 11 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. | 
|---|
| 8 | context 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. | 
|---|
| 13 | context 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 |  | 
|---|
| 19 | typedef 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. | 
|---|
| 27 | forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) ) | 
|---|
| 28 | elt_type *begin( array_type ); | 
|---|
| 29 |  | 
|---|
| 30 | forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) ) | 
|---|
| 31 | elt_type *end( array_type ); | 
|---|
| 32 |  | 
|---|
| 33 | #endif // ARRAY_H | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.