Mark Cidade

16,190
Reputation
699 views

Registered User

Name Mark Cidade
Member for 1 year
Seen yesterday
Website
Location Toronto, Canada
Age 32
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));
     }
  }


*
272

*
133
93
votes
66
answers
5
kviews

*
39

*
15

*
12
22
votes
11
answers
2
kviews

*
17
14
votes
12
answers
800
views

*
7

*
3
8
votes
7
answers
3
kviews

Bit fields in C#

nov 23 at 14:55 tanascius 3,984

*
12
8
votes
7
answers
2
kviews

*
12

*
4

*
3
3
votes
3
answers
327
views

*
4
2
votes
5
answers
246
views

*
1
1
vote
10
answers
2
kviews

*
3