Movatterモバイル変換


[0]ホーム

URL:


Scala 3
3.7.4
LearnInstallPlaygroundFind A LibraryCommunityBlog
Scala 3
LearnInstallPlaygroundFind A LibraryCommunityBlog
DocsAPI
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL
Scala 3/scala/unchecked

unchecked

scala.unchecked
finalclassunchecked extendsAnnotation

An annotation to designate that the annotated entity should not be considered for additional compiler checks. Specific applications include annotating the subject of a match expression to suppress exhaustiveness and reachability warnings, and annotating a type argument in a match case to suppress unchecked warnings.

Such suppression should be used with caution, without which one may encounterscala.MatchError orjava.lang.ClassCastException at runtime. In most cases one can and should address the warning instead of suppressing it.

object Test extends App {  // This would normally warn "match is not exhaustive"  // because `None` is not covered.  def f(x: Option[String]) = (x: @unchecked) match { case Some(y) => y }  // This would normally warn "type pattern is unchecked"  // but here will blindly cast the head element to String.  def g(xs: Any) = xs match { case x: List[String @unchecked] => x.head }}

Attributes

Source
unchecked.scala
Graph
Supertypes
classObject
traitMatchable
classAny
In this article
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL

[8]ページ先頭

©2009-2025 Movatter.jp