當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart SplayTreeSet.of用法及代碼示例


dart:collection 庫中SplayTreeSet.of 的用法介紹如下。

用法:

SplayTreeSet<E>.of(
   Iterable<E> elements,    
   [int compare(
   E key1,    
   E key2   
)?,    
   bool isValidKey(
   dynamic potentialKey   
)?]   
)

elements 創建一個 SplayTreeSet

該集合就像由 new SplayTreeSet<E>(compare, isValidKey) 創建一樣工作。

所有elements 都應該作為compare 函數的參數有效。例子:

final baseSet = <int>{1, 2, 3};
final setOf = SplayTreeSet<num>.of(baseSet);
print(setOf); // {1, 2, 3}

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 SplayTreeSet<E>.of constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。