A collection of conditional function that can be applied to Result types.
mapIf : Basics.Bool -> (a -> a) -> Result x a -> Result x a
Apply the mapping function only if the first condition is met.
andThenIf : Basics.Bool -> (a -> Result x a) -> Result x a -> Result x a
Apply a "Then" - chaining function only if the first condition is met.