public validate<E2, S2>(
    fn: (value: S) => Validation<E2, S2>,
  ): Task<E | E2, S2> {
    return validate(fn, this)
  }