/////////////////////////////////////////////////////////////////////////////// /// \file or_n.hpp /// Definitions of or_N // // Copyright 2008 Eric Niebler. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) template struct or_2 : mpl::bool_::value> { typedef G1 which; }; template struct or_2 : mpl::true_ { typedef G0 which; }; template struct or_3 : or_2< matches_::value , Expr, BasicExpr, G1 , G2 > {}; template struct or_3 : mpl::true_ { typedef G0 which; }; template struct or_4 : or_3< matches_::value , Expr, BasicExpr, G1 , G2 , G3 > {}; template struct or_4 : mpl::true_ { typedef G0 which; }; template struct or_5 : or_4< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 > {}; template struct or_5 : mpl::true_ { typedef G0 which; }; template struct or_6 : or_5< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 , G5 > {}; template struct or_6 : mpl::true_ { typedef G0 which; }; template struct or_7 : or_6< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 , G5 , G6 > {}; template struct or_7 : mpl::true_ { typedef G0 which; }; template struct or_8 : or_7< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 , G5 , G6 , G7 > {}; template struct or_8 : mpl::true_ { typedef G0 which; }; template struct or_9 : or_8< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 , G5 , G6 , G7 , G8 > {}; template struct or_9 : mpl::true_ { typedef G0 which; }; template struct or_10 : or_9< matches_::value , Expr, BasicExpr, G1 , G2 , G3 , G4 , G5 , G6 , G7 , G8 , G9 > {}; template struct or_10 : mpl::true_ { typedef G0 which; };