Skip to content

Instantly share code, notes, and snippets.

@renestein
Created April 2, 2012 08:02
Show Gist options
  • Save renestein/2281519 to your computer and use it in GitHub Desktop.
Save renestein/2281519 to your computer and use it in GitHub Desktop.
public static Func<TA, TResult> DeepSpace9<TA, TResult>(Func<Func<TA, TResult>, Func<TA, TResult>> a)
{
return
t => a(DeepSpace9(a))(t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment