リストコレクションの例


https://grokonez.com/kotlin/kotlin-distinct-methods-list-collection
リストコレクションの例
チュートリアルでは、リストコレクションのKotlin distinct()メソッドで動作する方法を示します.
実践
1 . define ()メソッドdistinct()メソッドを使用して、個別の要素だけを含むリストを返します.
メソッドシグネチャ
public fun <T> Iterable<T>.distinct(): List<T>
  • は単純なリストで働きます:
  • val simpleList = listOf(1, 2, 3, 5, 3, 4, 1, 10, 13, 7, 10, 8)
    println(simpleList)
    // print on console
    //->
    /*
        [1, 2, 3, 5, 3, 4, 1, 10, 13, 7, 10, 8]
    */
    
    println(simpleList.distinct())
    // print on console
    // ->
    /*
        [1, 2, 3, 5, 4, 10, 13, 7, 8]
    */
  • Kotlinオブジェクトリストでの作業:
  • その他:
    Grokonez
    リストコレクションの例