It transform a boost::fusion::vector to another boost::fusion::vector applying a meta-function H on each element
| H | metafunction (is a structure with typedef type) | 
| L | boost::fusion::vector | 
Definition at line 91 of file variadic_to_vmpl.hpp.
#include <variadic_to_vmpl.hpp>
| Public Types | |
| typedef boost::mpl::reverse< L > ::type | reversed_ | 
| reverse the sequence | |
| typedef seq_traits_impl < reversed_ >::first_ | first | 
| first element | |
| typedef seq_traits_impl < reversed_ >::last_ | last | 
| last element | |
| typedef exit_impl< first, last > ::type | exit_ | 
| calculate the exit condition | |
| typedef v_transform_impl< H, first, last, exit_::value > ::type | type | 
| generate the boost::fusion::vector apply H on each term | |