We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Boost.Graph uses function overloading for the high level interface
template< class T1 , class T2 > high_level_function( T1 t1 , T2 t2 ) { t1.function( t2); }
Boost.Fusion uses function overloading with one layer between the high level interface and the implementation
template< class T1 > struct high_level_function_impl { template< class T2 > void apply( T1 t1 , T2 t2 ) { t1.function( t2 ); } }; template< class T1 , class T2 > void high_level_function( T1 t1 , T2 t2 ) { high_level_function_impl< T1 >::apply( t1 , t2 ); }