IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
TreeSetWrapper.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3
4namespace java.util
5{
6
7 class TreeSetWrapper<T> : SetWrapper<T>, ISet<T>
8 {
9
10 readonly TreeSet _set;
11
17 public TreeSetWrapper(TreeSet set) :
18 base(set)
19 {
20 _set = set ?? throw new ArgumentNullException(nameof(set));
21 }
22
23 }
24
25}
TreeSetWrapper(TreeSet set)
Initializes a new instance.