Mark Cidade
|
Registered User
|
http://www.marxidad.com/Aboutme
I first learned BASIC at age 11 on a Commodore 64. Former SDET, ADO.NET Team @ Microsoft.
class Maybe<T>
{ T t;
Maybe(){}
public static Maybe<T> Just(T t){ return new Maybe<T>{t=t};}
static Maybe<T> nothing = new Maybe<T>();
public static Maybe<T> Nothing
{ get {return nothing;}
}
public Maybe<U> Select<U>(Func<T,U> f)
{ return Maybe<U>.Just(f(t));
}
public Maybe<V> SelectMany<U,V>(Func<T, Maybe<U>> f, Func<U,V> g)
{ var x = f(t);
if (x == Maybe<U>.Nothing) return Maybe<V>.Nothing;
return Maybe<V>.Just(g(x.t));
}
}
|
| 29 |
Questions |
1
14
votes
3
answers
1
kviews
7
votes
12
answers
631
views
3
5
votes
7
answers
1
kviews
1
5
votes
6
answers
392
views
4
5
votes
14
answers
1
kviews
1
5
votes
2
answers
479
views
4
votes
3
answers
520
views
1
4
votes
8
answers
434
views
2
4
votes
5
answers
395
views
4
3
votes
3
answers
301
views
|
820
|
Votes |
|
618
|
Tags |
|
c#× 170 .net× 119 asp.net× 48 subjective× 30 linq× 24 best-practices× 23 visual-studio× 19 linq-to-sql× 18 generics× 16 functional-programming× 15 |
language-agnostic× 14 javascript× 12 web-services× 12 unit-testing× 11 .net-3.5× 10 html× 10 reflection× 10 java× 9 python× 9 wcf× 9 |
database× 9 vb.net× 9 programming-languages× 8 visual-studio-2008× 8 rest× 8 discussion× 8 oop× 7 performance× 7 sql× 7 |
xml× 7 design-patterns× 7 events× 7 programming× 7 web-development× 7 winforms× 6 design× 6 compiler× 6 iis× 6 ide× 6 |
c++× 6 beginner× 6 f#× 6 inheritance× 6 http× 6 ado.net× 6 string× 6 semantic-web× 6 gui× 5 language× 5 |
|
107
|
Badges |
