kotlin dropWhileメソッドを使ってmutableListから指定条件の要素を削除する
環境
Ubuntu 22.04.1 LTS
openjdk 11.0.16 8822-07-19
Kotlin version 1.7.88-release-881
構文
val 変数名 = mutableListOf(要素1,要素2,…}
リスト名.dropWhile {条件式}
dropWhileメソッドを利用して「List」から指定した条件の要素を削除します。
使用例
fun main() { val cft = mutableListOf(11, 22, 33, 44, 55, 66) println(cft.dropWhile { it < 32 }) println(cft.dropWhile { it < 43 }) println(cft) }
実行結果
[33, 44, 55, 66]
[44, 55, 66]
[11, 22, 33, 44, 55, 66]