Mapping an Array with Success or Failure
Hello everyone, I'd like to map an array to an array of mapped values ONLY if ALL the mapping succeed, or to another object if AT LEAST ONE mapping fails. I could lift the mapping operation to effects and run them, but is there a way to do it with array combinators only? I couldn't find one, except for reducing, but that doesn't "exit early"
