Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここrecentestにリストがあり、その「プロファイル」で一致させたい: 空または正確に 1 つの要素。match ステートメントでネイティブに実行できますか?
recentest
val newId = if( recentest.size == 0) 0L else {recentest(0).as[Long]("item_id") + 1}
いくつかのケース間で任意のサイズを一致させたい場合は、次のようにすることができます。
list match { ... case _ if list.length == mySize => ... ... }
val newId = recentest match { case Nil => 0 case h::Nil => h.as[Long]("item_id") + 1 }