1 | # 1 "iterator.c" |
---|
2 | # 1 "<built-in>" |
---|
3 | # 1 "<command line>" |
---|
4 | # 1 "iterator.c" |
---|
5 | # 1 "iterator.h" 1 |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | # 1 "iostream.h" 1 |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | typedef unsigned long streamsize_type; |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | context ostream( dtype os_type ) |
---|
18 | { |
---|
19 | |
---|
20 | os_type *write( os_type *, const char *, streamsize_type ); |
---|
21 | |
---|
22 | |
---|
23 | int fail( os_type * ); |
---|
24 | }; |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | context writeable( type T ) |
---|
30 | { |
---|
31 | forall( dtype os_type | ostream( os_type ) ) os_type * ?<<?( os_type *, T ); |
---|
32 | }; |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | forall( dtype os_type | ostream( os_type ) ) os_type * ?<<?( os_type *, char ); |
---|
37 | forall( dtype os_type | ostream( os_type ) ) os_type * ?<<?( os_type *, int ); |
---|
38 | forall( dtype os_type | ostream( os_type ) ) os_type * ?<<?( os_type *, const char * ); |
---|
39 | |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | context istream( dtype is_type ) |
---|
44 | { |
---|
45 | |
---|
46 | is_type *read( is_type *, char *, streamsize_type ); |
---|
47 | |
---|
48 | |
---|
49 | is_type *unread( is_type *, char ); |
---|
50 | |
---|
51 | |
---|
52 | int fail( is_type * ); |
---|
53 | |
---|
54 | |
---|
55 | int eof( is_type * ); |
---|
56 | }; |
---|
57 | |
---|
58 | |
---|
59 | |
---|
60 | |
---|
61 | context readable( type T ) |
---|
62 | { |
---|
63 | forall( dtype is_type | istream( is_type ) ) is_type * ?<<?( is_type *, T ); |
---|
64 | }; |
---|
65 | |
---|
66 | |
---|
67 | |
---|
68 | forall( dtype is_type | istream( is_type ) ) is_type * ?>>?( is_type *, char* ); |
---|
69 | forall( dtype is_type | istream( is_type ) ) is_type * ?>>?( is_type *, int* ); |
---|
70 | # 5 "iterator.h" 2 |
---|
71 | |
---|
72 | |
---|
73 | context iterator( type iterator_type, type elt_type ) |
---|
74 | { |
---|
75 | |
---|
76 | iterator_type ?++( iterator_type* ); |
---|
77 | iterator_type ++?( iterator_type* ); |
---|
78 | |
---|
79 | |
---|
80 | int ?==?( iterator_type, iterator_type ); |
---|
81 | int ?!=?( iterator_type, iterator_type ); |
---|
82 | |
---|
83 | |
---|
84 | lvalue elt_type *?( iterator_type ); |
---|
85 | }; |
---|
86 | |
---|
87 | |
---|
88 | |
---|
89 | forall( type elt_type | writeable( elt_type ), |
---|
90 | type iterator_type | iterator( iterator_type, elt_type ), |
---|
91 | dtype os_type | ostream( os_type ) ) |
---|
92 | void write_all( iterator_type begin, iterator_type end, os_type *os ); |
---|
93 | # 2 "iterator.c" 2 |
---|
94 | |
---|
95 | forall( type elt_type | writeable( elt_type ), |
---|
96 | type iterator_type | iterator( iterator_type, elt_type ), |
---|
97 | dtype os_type | ostream( os_type ) ) |
---|
98 | void |
---|
99 | write_all( elt_type begin, iterator_type end, os_type *os ) |
---|
100 | { |
---|
101 | os << begin; |
---|
102 | } |
---|