2cl (pronounce "toccle") is a functional programming extension for C++
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
#include "2CL.hpp"
|
|
#include <assert.h>
|
|
|
|
struct test_003{
|
|
test_003()
|
|
{
|
|
auto fn = cl::curry(
|
|
[](int a,int b)->int{return a+b;},
|
|
11
|
|
);
|
|
assert(fn(1)()==12);
|
|
}
|
|
};
|
|
|
|
test_003 run_003;
|
|
|
|
struct test_004{
|
|
test_004()
|
|
{
|
|
using namespace cl;
|
|
auto fn = function([](int a, int b)->int{return a+b;});
|
|
assert(fn(2)(7)()==9);
|
|
}
|
|
};
|
|
|
|
test_004 run_004;
|