xor method

Option<T> xor(
  1. Option<T> other
)

Implementation

Option<T> xor(Option<T> other) {
  if (other.isSome()) {
    return None;
  }
  return Some(v);
}