What\'s the difference between Some and Option?
Some
Option
scala> Some(true) res2: Some[Boolean] = Some(true) scala> val x: Option[Boolean]
In short
Option / \ / \ / \ Some None
Option is container base which can be empty or full
While Some(x) represent full with 'x' being present in the container, None represents empty.