9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-02 13:56:40 +00:00

Iris reports

This commit is contained in:
Daniel Mills
2020-10-27 02:33:44 -04:00
parent 1b20d3b6ac
commit 361d02e075
5 changed files with 316 additions and 28 deletions

View File

@@ -686,6 +686,12 @@ public class KList<T> extends ArrayList<T> implements List<T>
return this;
}
public KList<T> qaddIfMissing(T t)
{
addIfMissing(t);
return this;
}
public KList<T> removeDuplicates()
{
KSet<T> v = new KSet<>();