Skip to content

Instantly share code, notes, and snippets.

View k3kaimu's full-sized avatar

Kazuki Komatsu k3kaimu

  • Toyohashi University of Technology
  • X @k3k0ma
View GitHub Profile
@k3kaimu
k3kaimu / 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);