source:
tests/div.cfa
@
ff55092
Last change on this file since ff55092 was 200fcb3, checked in by , 6 years ago | |
---|---|
|
|
File size: 961 bytes |
Line | |
---|---|
1 | // |
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
3 | // |
4 | // The contents of this file are covered under the licence agreement in the |
5 | // file "LICENCE" distributed with Cforall. |
6 | // |
7 | // div.cfa -- |
8 | // |
9 | // Author : Peter A. Buhr |
10 | // Created On : Tue Aug 8 16:28:43 2017 |
11 | // Last Modified By : Peter A. Buhr |
12 | // Last Modified On : Tue Dec 4 21:35:01 2018 |
13 | // Update Count : 20 |
14 | // |
15 | |
16 | #include <fstream.hfa> |
17 | #include <stdlib.hfa> // div |
18 | |
19 | struct T { int i; }; |
20 | T ?/?( T t1, T t2 ) { return t1.i / t2.i; } |
21 | T ?%?( T t1, T t2 ) { return t1.i % t2.i; } |
22 | ofstream & ?|?( ofstream & os, T t ) { return os | t.i; } |
23 | |
24 | int main( void ) { |
25 | sout | "div" | div( 13, 5 ) | div( 13L, 5L ) | div( 13LL, 5LL ); |
26 | short s1 = 13, s2 = 5; |
27 | sout | "div" | div( s1, s2 ); |
28 | T t1 = { 13 }, t2 = { 5 }; |
29 | sout | "div" | div( t1, t2 ); // polymorphic div |
30 | } // main |
31 | |
32 | // Local Variables: // |
33 | // tab-width: 4 // |
34 | // compile-command: "cfa div.cfa" // |
35 | // End: // |
Note: See TracBrowser
for help on using the repository browser.