Question
What is Either commonly used to represent?
Select an option. Your answer will be checked instantly.
Correct Answer: B. A computation with one of two possible result types, often error or success
Explanation:
By convention, Left often contains an error and Right a success value.
Either preserves error information without throwing immediately.
Leave a Reply