You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineMATCH .template match
auto res = [ ] ( auto x )
{
case_ ( x )
MATCH < int > ( [ ] ( int y ) { return y ; } )
MATCH < double > ( [ ] ( double y ) { return y ; } )
MATCH < std::vector < pattern < 0 > > > ( [ ] < typename T > ( const std::vector < T > & v ) { return v ; } )
MATCH < pattern < 0 > > ( [ ] ( auto y ) { return boost::any { y } ; } )
;
} ( some_value ) ;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: