• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

compose.hh

00001 // Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #ifndef MLN_FUN_COMPOSE_HH
00027 # define MLN_FUN_COMPOSE_HH
00028 
00029 # include <mln/fun/binary.hh>
00030 # include <mln/fun/composition.hh>
00031 # include <mln/fun/param.hh>
00032 
00033 namespace mln
00034 {
00035   // Composition
00036   namespace fun
00037   {
00038     struct compose : binary<compose> {};
00039 
00040     namespace internal
00041     {
00042 
00043       template <template <class> class CatF, typename F, template <class> class CatG, typename G>
00044       struct compose_helper;
00045 
00046     }
00047 
00048     template <template <class> class CatF,  typename F,
00049               template <class> class CatG, typename G>
00050     struct parameter< internal::compose_helper<CatF, F, CatG, G> >
00051     {
00052       typedef typename internal::composition<CatF, F, CatG, G>::exact_type result;
00053       typedef typename result::param param;
00054     };
00055 
00056     namespace internal
00057     {
00058 
00059       template <template <class> class CatF, typename F, template <class> class CatG, typename G>
00060       struct compose_helper
00061       {
00062         typedef F argument1;
00063         typedef G argument2;
00064 
00065         typedef typename composition<CatF, F, CatG, G>::exact_type result;
00066         typedef mln_trait_fun_param(result) param;
00067 
00068         static result read(const F& f, const G& g)
00069         {
00070           return result(param(f, g));
00071         }
00072       };
00073 
00074     } // end of namespace mln::fun::internal
00075 
00076   } // end of namespace mln::fun
00077 
00078   namespace trait
00079   {
00080 
00081     namespace next
00082     {
00083 
00084       // All kinds of supported compositions (meta : unary) with (meta or not : unary or binary)
00085       template <typename F, typename G>
00086       struct set_binary_< mln::fun::compose, mln::Meta_Function_v2v, F, mln::Meta_Function_v2v, G>
00087       {
00088         typedef mln::fun::internal::compose_helper<mln::Meta_Function_v2v, F, mln::Meta_Function_v2v, G> ret;
00089       };
00090 
00091       template <typename F, typename G>
00092       struct set_binary_< mln::fun::compose, mln::Meta_Function_v2v, F, mln::Meta_Function_vv2v, G>
00093       {
00094         typedef mln::fun::internal::compose_helper<mln::Meta_Function_v2v, F, mln::Meta_Function_vv2v, G> ret;
00095       };
00096 
00097       template <typename F, typename G>
00098       struct set_binary_< mln::fun::compose, mln::Meta_Function_v2v, F, mln::Function_v2v, G>
00099       {
00100         typedef mln::fun::internal::compose_helper<mln::Meta_Function_v2v, F, mln::Function_v2v, G> ret;
00101       };
00102 
00103       template <typename F, typename G>
00104       struct set_binary_< mln::fun::compose, mln::Meta_Function_v2v, F, mln::Function_vv2v, G>
00105       {
00106         typedef mln::fun::internal::compose_helper<mln::Meta_Function_v2v, F, mln::Function_vv2v, G> ret;
00107       };
00108 
00109     } // end of namespace mln::trait::next
00110 
00111   } // end of namespace mln::trait
00112 
00113 }  // end of namespace mln
00114 
00115 #endif // ! MLN_FUN_COMPOSE_HH

Generated on Tue Oct 4 2011 15:23:38 for Milena (Olena) by  doxygen 1.7.1