Exemplo n.º 1
0
 public static Unit iter <NUMTYPE, NUM, T, PRED>(NumType <NUMTYPE, NUM, T, PRED> value, Action <T> f)
     where NUM     : struct, Num <T>
     where PRED    : struct, Pred <T>
     where NUMTYPE : NumType <NUMTYPE, NUM, T, PRED> =>
 value.Iter(f);
Exemplo n.º 2
0
 public static Unit iter <NUMTYPE, NUM, T>(NumType <NUMTYPE, NUM, T> value, Action <T> f)
     where NUM : struct, Num <T>
     where NUMTYPE : NumType <NUMTYPE, NUM, T> =>
 value.Iter(f);