Changes in src/libcfa/algorithm [5721a6d:b4cd03b7]
- File:
-
- 1 edited
-
src/libcfa/algorithm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/algorithm
r5721a6d rb4cd03b7 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // alorgithm -- 7 // alorgithm -- 8 8 // 9 9 // Author : Peter A. Buhr … … 16 16 //--------------------------------------- 17 17 18 forall( type T | { int ?<?( T,T ); } )18 forall( type T | { int ?<?( const T, const T ); } ) 19 19 T min( const T t1, const T t2 ); 20 20 21 forall( type T | { int ?>?( T,T ); } )21 forall( type T | { int ?>?( const T, const T ); } ) 22 22 T max( const T t1, const T t2 ); 23 23
Note:
See TracChangeset
for help on using the changeset viewer.