and<U> abstract method

Option<U> and<U>(
  1. Option<U> other
)

Returns None if the option is None, otherwise returns other.

Implementation

Option<U> and<U>(Option<U> other);