public void SymmetricExcept(NativeHashSet <T> other) { UnsafeHashSet.SymmetricExcept <T>(m_inner, other.m_inner); }
public void UnionWith(NativeHashSet <T> other) { UnsafeHashSet.UnionWith <T>(m_inner, other.m_inner); }
public void ExceptWith(NativeHashSet <T> other) { UnsafeHashSet.ExceptWith <T>(m_inner, other.m_inner); }
public void IntersectsWith(NativeHashSet <T> other) { UnsafeHashSet.IntersectsWith <T>(m_inner, other.m_inner); }