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 f7d59bf was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago |
licencing: seventh groups of files
|
-
Property mode
set to
100644
|
File size:
940 bytes
|
Line | |
---|
1 | typedef forall ( type T ) int (*f)( int );
|
---|
2 |
|
---|
3 | forall( type T )
|
---|
4 | void swap( T left, T right ) {
|
---|
5 | T temp = left;
|
---|
6 | left = right;
|
---|
7 | right = temp;
|
---|
8 | }
|
---|
9 |
|
---|
10 | context sumable( type T ) {
|
---|
11 | const T 0;
|
---|
12 | T ?+?(T, T);
|
---|
13 | T ?++(T);
|
---|
14 | [T] ?+=?(T,T);
|
---|
15 | };
|
---|
16 |
|
---|
17 | type T1 | { const T1 0; T1 ?+?(T1, T1); T1 ?++(T1); [T1] ?+=?(T1,T1); },
|
---|
18 | T2(type P1, type P2 ),
|
---|
19 | T3 | sumable(T3);
|
---|
20 |
|
---|
21 | type T2(type P1, type P2) | sumable(T2(P1,P2)) = struct { P1 i; P2 j; };
|
---|
22 |
|
---|
23 | T2(int, int) w1;
|
---|
24 | typedef T2(int, int) w2;
|
---|
25 | w2 g2;
|
---|
26 | type w3 = T2(int, int);
|
---|
27 | w3 g3;
|
---|
28 |
|
---|
29 | forall( type T | sumable( T ) )
|
---|
30 | T sum( int n, T a[] ) {
|
---|
31 | T total = 0;
|
---|
32 | int i;
|
---|
33 | for ( i = 0; i < n; i += 1 )
|
---|
34 | total = total + a[i];
|
---|
35 | return total;
|
---|
36 | }
|
---|
37 |
|
---|
38 | forall( type T | { const T 0; T ?+?(T, T); T ?++(T); [T] ?+=?(T,T); } )
|
---|
39 | T twice( T t ) {
|
---|
40 | return t + t;
|
---|
41 | }
|
---|
42 |
|
---|
43 | int main() {
|
---|
44 | int x = 1, y = 2, a[10];
|
---|
45 | float f;
|
---|
46 |
|
---|
47 | swap( x, y );
|
---|
48 | twice( x, y );
|
---|
49 | f = min( 4.0, 3.0 );
|
---|
50 | sum( 10, a );
|
---|
51 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.