Beispiel #1
0
 public void SymmetricExcept(NativeHashSet <T> other)
 {
     UnsafeHashSet.SymmetricExcept <T>(m_inner, other.m_inner);
 }
Beispiel #2
0
 public void UnionWith(NativeHashSet <T> other)
 {
     UnsafeHashSet.UnionWith <T>(m_inner, other.m_inner);
 }
Beispiel #3
0
 public void ExceptWith(NativeHashSet <T> other)
 {
     UnsafeHashSet.ExceptWith <T>(m_inner, other.m_inner);
 }
Beispiel #4
0
 public void IntersectsWith(NativeHashSet <T> other)
 {
     UnsafeHashSet.IntersectsWith <T>(m_inner, other.m_inner);
 }