a pure function to be applied once on the Err value
Returns boolean
false if Result was an Ok without executing the provided function or true if Result was Err and the provided function returns true when applied to the Err value
a pure function to be applied once on the Ok value
Returns boolean
false if Result was an Err without executing the provided function or true if Result was Ok and the provided function returns true when applied to the Ok value
you shouldn't call this in your code. use Ok or Err instead