I have a Boolean and would like to avoid this pattern:
if (myBool) Option(someResult) else None
What I\'d like to do is
Option(true).find(_ == true) // Some(true) Option(false).find(_ == true) // None