教会の数字は、次のような言語の新しいラムダ部分を使用して、C++0x (C++11?) で表現できます。
typedef function<int(int)> F;
static const F id = [=](int x) { return x; };
function<F(F)> church(unsigned int i)
{
if(i == 0) {
return [=] (F f) { return id; };
}
return [=] (F f) {
F tmp = [=](int x) { return f(church(i-1)(f)(x)); };
return tmp;
};
}
Boost.Bind と C++03 を使用して教会の数字を表現することはできますか? もしそうなら、どのように?