Skip to content

Instantly share code, notes, and snippets.

View k3komatsu's full-sized avatar

Kazuki Komatsu k3komatsu

View GitHub Profile
@k3komatsu
k3komatsu / map.d
Last active December 17, 2015 08:58 — forked from majiang/map.d
コンパイルしてないので動くかどうか不明
module map;
auto map(FT, ATR)(FT f, ATR x)
if(isInputRange!ATR && is(typeof(f(x.front))) && !is(typeof(f(x.front)) == void))
{
static struct R
{
auto front()
{
return f(x.front);