public static TryOptionAsync <T> bifilter <T>(TryOptionAsync <T> self, Func <T, bool> Succ, Func <bool> Fail) =>
 self.BiFilter(Succ, Fail);