Beispiel #1
0
 public static Eff <RT, HashSet <A> > Sequence <RT, A>(this HashSet <Eff <RT, A> > ma) where RT : struct =>
 ma.Traverse(identity);
Beispiel #2
0
 public static Eff <HashSet <A> > Sequence <A>(this HashSet <Eff <A> > ma) =>
 ma.Traverse(identity);
Beispiel #3
0
 public static TryAsync <HashSet <A> > Sequence <A>(this HashSet <TryAsync <A> > ta) =>
 ta.Traverse(identity);
Beispiel #4
0
 public static Seq <HashSet <A> > Sequence <A>(this HashSet <Seq <A> > ta) =>
 ta.Traverse(identity);
Beispiel #5
0
 public static EitherUnsafe <L, HashSet <A> > Sequence <L, A>(this HashSet <EitherUnsafe <L, A> > ta) =>
 ta.Traverse(identity);
 public static OptionUnsafe <HashSet <A> > Sequence <A>(this HashSet <OptionUnsafe <A> > ta) =>
 ta.Traverse(identity);
 public static IEnumerable <HashSet <A> > Sequence <A>(this HashSet <IEnumerable <A> > ta) =>
 ta.Traverse(identity);
 public static Validation <Fail, HashSet <A> > Sequence <Fail, A>(this HashSet <Validation <Fail, A> > ta) =>
 ta.Traverse(identity);
 public static Validation <MonoidFail, Fail, HashSet <A> > Sequence <MonoidFail, Fail, A>(this HashSet <Validation <MonoidFail, Fail, A> > ta)
     where MonoidFail : struct, Monoid <Fail>, Eq <Fail> =>
 ta.Traverse(identity);