예제 #1
0
 public static IBehavior <TResult> Switch <TSource, TResult>(
     this IBehavior <TSource> self,
     Func <TSource, IBehavior <TResult> > f)
 {
     return(self.Select(f).Switch());
 }