$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] boost::parameter -- merging two ArgPacks
From: e r (erwann.rogard_at_[hidden])
Date: 2008-09-09 01:36:53
hello,
here's what i'm looking to do:
template<typename ArgPack>
result_type unary_fun(const ArgPack& args){
//typically calls args[some_tag]
}
template<typename ArgPack1,typename ArgPack2>
result_type binary_fun(const ArgPack1& args1,const ArgPack2& args2){
return unary_fun(merge(args1,args2));
}
i'm looking to define merge. not familiar enough with arg_list.hpp any
help would be appreciated.
thanks.