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