Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/examples/array.h

    r4040425 rd3b7937  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 18:13:35 2016
    13 // Update Count     : 5
     12// Last Modified On : Tue Jan 26 17:09:29 2016
     13// Update Count     : 3
    1414//
    1515
     
    2121// An array has contiguous elements accessible in any order using integer indicies. The first
    2222// element has index 0.
    23 trait array( otype array_type, otype elt_type ) {
     23context array( type array_type, type elt_type ) {
    2424        lvalue elt_type ?[?]( array_type, int );
    2525};
    2626
    2727// A bounded array is an array that carries its maximum index with it.
    28 trait bounded_array( otype array_type, otype elt_type | array( array_type, elt_type ) ) {
     28context bounded_array( type array_type, type elt_type | array( array_type, elt_type ) ) {
    2929        int last( array_type );
    3030};
     
    3434typedef int array_iterator;
    3535
    36 /// forall( otype array_type, elt_type | bounded_array( array_type, elt_type ) )
     36/// forall( type array_type, elt_type | bounded_array( array_type, elt_type ) )
    3737/// [ array_iterator begin, array_iterator end ] get_iterators( array_type );
    3838
     
    4040// A bounded array can be iterated over by using a pointer to the element type. These functions
    4141// return iterators corresponding to the first element and the one-past-the-end element, STL-style.
    42 forall( otype array_type, otype elt_type | bounded_array( array_type, elt_type ) )
     42forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) )
    4343elt_type *begin( array_type );
    4444
    45 forall( otype array_type, otype elt_type | bounded_array( array_type, elt_type ) )
     45forall( type array_type, type elt_type | bounded_array( array_type, elt_type ) )
    4646elt_type *end( array_type );
    4747
Note: See TracChangeset for help on using the changeset viewer.