Example #1
0
 public static AvlMap2 <TKey, TValue> Create(bool descending = false) =>
 new AvlMap2 <TKey, TValue>(ComparisonHelper.Create <TKey>(descending));
Example #2
0
 public static Treap <T> Create <TKey>(Func <T, TKey> keySelector, bool descending = false) =>
 new Treap <T>(ComparisonHelper.Create(keySelector, descending));
Example #3
0
 public static AvlSet <T> Create(bool descending = false) =>
 new AvlSet <T>(ComparisonHelper.Create <T>(descending));
Example #4
0
 public static Treap <T> Create(bool descending = false) =>
 new Treap <T>(ComparisonHelper.Create <T>(descending));
 public static BinarySearchTree <T> Create(bool descending = false) =>
 new BinarySearchTree <T>(ComparisonHelper.Create <T>(descending));