|
| template<typename Fn , typename... Ts> |
| using | meta::lazy::bind_back = defer< bind_back, Fn, Ts... > |
| |
| template<typename Fn , typename... Ts> |
| using | meta::lazy::bind_front = defer< bind_front, Fn, Ts... > |
| |
| template<typename... Fns> |
| using | meta::lazy::compose = defer< compose, Fns... > |
| |
| template<typename F , typename Q = quote<list>> |
| using | meta::lazy::curry = defer< curry, F, Q > |
| |
| template<typename F > |
| using | meta::lazy::flip = defer< flip, F > |
| |
| template<typename F , typename G > |
| using | meta::lazy::on = defer< on, F, G > |
| |
| template<typename F > |
| using | meta::lazy::uncurry = defer< uncurry, F > |
| |