and<S2> abstract method

Result<S2, F> and<S2>(
  1. Result<S2, F> other
)

Performs an "and" operation on the results. Returns the first result that is Err, otherwise if both are Ok, other Ok Result is returned.

Implementation

Result<S2, F> and<S2>(Result<S2, F> other);