示例#1
0
 public T Reduce(TupledFunction <T, T, T> f, T id) => Reduce(f._f, id);
示例#2
0
 public U Iter <U>(TupledFunction <U, T, U> f, U init) => Iter(f._f, init);
示例#3
0
 public Sequence <U> MapIndex <U>(TupledFunction <int, T, U> f) => MapIndex(f._f);
示例#4
0
 public Sequence <V> MapWith <U, V>(Sequence <U> other, TupledFunction <T, U, V> f)
 => MapWith(other, f._f);
示例#5
0
 public Sequence <T> FilterIdx(TupledFunction <int, T, bool> predicate) =>
 FilterIdx(predicate._f);