public static ValueTask <U> Bind <T, U>(this ValueTask <T> self, Func <T, ValueTask <U> > bind) => self.SelectMany(bind);