You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sealed abstract class Option[+A] extends Product with Serializable {...}
final case class Some[+A](x: A) extends Option[A] {...}
case object None extends Option[Nothing] {} // 왜 final이 아닐까요?