Home
last modified time | relevance | path

Searched refs:IsProperSubsetOf (Results 1 – 25 of 62) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.Immutable/tests/
H A DImmutableHashSetBuilderTest.cs202 public void IsProperSubsetOf() in IsProperSubsetOf() method in System.Collections.Immutable.Tests.ImmutableHashSetBuilderTest
205 … AssertExtensions.Throws<ArgumentNullException>("other", () => builder.IsProperSubsetOf(null)); in IsProperSubsetOf()
206 Assert.False(builder.IsProperSubsetOf(Enumerable.Range(1, 3))); in IsProperSubsetOf()
207 Assert.True(builder.IsProperSubsetOf(Enumerable.Range(1, 5))); in IsProperSubsetOf()
296 Assert.True(builder.IsProperSubsetOf(new[] { null, "a", "b" })); in NullHandling()
H A DImmutableSortedSetBuilderTest.cs220 public void IsProperSubsetOf() in IsProperSubsetOf() method in System.Collections.Immutable.Tests.ImmutableSortedSetBuilderTest
223 … AssertExtensions.Throws<ArgumentNullException>("other", () => builder.IsProperSubsetOf(null)); in IsProperSubsetOf()
224 Assert.False(builder.IsProperSubsetOf(Enumerable.Range(1, 3))); in IsProperSubsetOf()
225 Assert.True(builder.IsProperSubsetOf(Enumerable.Range(1, 5))); in IsProperSubsetOf()
346 Assert.True(builder.IsProperSubsetOf(new[] { null, "a", "b" })); in NullHandling()
H A DImmutableSetTest.cs130 …this.SetCompareTestHelper(s => s.IsProperSubsetOf, s => s.IsProperSubsetOf, this.GetIsProperSubset… in IsProperSubsetOfTest()
238 Assert.True(set.IsProperSubsetOf(new[] { null, "a", "b" })); in NullHandling()
/dports/devel/swig/swig-4.0.2/Examples/test-suite/csharp/
H A Dli_std_set_runme.cs68 checkThat(ss.IsProperSubsetOf(new[] {"bar", "baz"}), "IsProperSubsetOf works"); in Main()
69 checkThat(!ss.IsProperSubsetOf(new[] {"baz"}), "!IsProperSubsetOf works"); in Main()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Core/Test/System.Collections.Generic/
H A DHashSetTest.cs273 Assert.IsTrue (set.IsProperSubsetOf (other)); in TestProperSubsetOf()
274 Assert.IsFalse (set.IsProperSubsetOf (other2)); in TestProperSubsetOf()
275 Assert.IsFalse (set.IsProperSubsetOf (other3)); in TestProperSubsetOf()
287 Assert.IsTrue (set.IsProperSubsetOf (other1)); in TestProperSubsetOfComparer()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.Immutable/src/System/Collections/Immutable/
H A DImmutableHashSet_1.Builder.cs287 public bool IsProperSubsetOf(IEnumerable<T> other) in IsProperSubsetOf() method in System.Collections.Immutable.ImmutableHashSet.Builder
289 return ImmutableHashSet<T>.IsProperSubsetOf(other, this.Origin); in IsProperSubsetOf()
H A DImmutableSortedSet_1.Builder.cs271 public bool IsProperSubsetOf(IEnumerable<T> other) in IsProperSubsetOf() method in System.Collections.Immutable.ImmutableSortedSet.Builder
273 return this.ToImmutable().IsProperSubsetOf(other); in IsProperSubsetOf()
H A DIImmutableSet.cs116 bool IsProperSubsetOf(IEnumerable<T> other); in IsProperSubsetOf() method
H A DImmutableHashSet_1.cs316 public bool IsProperSubsetOf(IEnumerable<T> other) in IsProperSubsetOf() method in System.Collections.Immutable.ImmutableHashSet
320 return IsProperSubsetOf(other, this.Origin); in IsProperSubsetOf()
883 private static bool IsProperSubsetOf(IEnumerable<T> other, MutationInput origin) in IsProperSubsetOf() method in System.Collections.Immutable.ImmutableHashSet
H A DImmutableSortedSet_1.cs422 public bool IsProperSubsetOf(IEnumerable<T> other) in IsProperSubsetOf() method in System.Collections.Immutable.ImmutableSortedSet
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/src/System/Collections/Generic/
H A DISet.cs41 bool IsProperSubsetOf(IEnumerable<T> other); in IsProperSubsetOf() method
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/generic/
H A Diset.cs55 bool IsProperSubsetOf(IEnumerable<T> other); in IsProperSubsetOf() method
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Support/Compatibility/
H A DISet.cs32 bool IsProperSubsetOf(IEnumerable<T> other); in IsProperSubsetOf() method
H A DSortedSet.cs148 bool ISet<T>.IsProperSubsetOf(IEnumerable<T> other) in IsProperSubsetOf() method in System.Collections.Generic.SortedSet
/dports/games/openra/OpenRA-release-20200503/OpenRA.Game/Primitives/
H A DLongBitSet.cs129 public bool IsProperSubsetOf(LongBitSet<T> other) in IsProperSubsetOf() method
H A DBitSet.cs111 public bool IsProperSubsetOf(BitSet<T> other) in IsProperSubsetOf() method
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Performance/
H A DPerf.HashSet.cs327 theSet.IsProperSubsetOf(setToCheckSubset); in TestIsProperSubsetHashSet()
341 theSet.IsProperSubsetOf(stuffToCheckSubset); in TestIsProperSubsetEnum()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Collections/
H A DISet.Generic.Tests.cs182 …ContainsValueNotInEnumerable && enumerableContainsValueNotInSet, set.IsProperSubsetOf(enumerable)); in Validate_IsProperSubsetOf()
308 Assert.Throws<ArgumentNullException>(() => set.IsProperSubsetOf(null)); in ISet_Generic_NullEnumerableArgument()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Analysis/
H A DCharArraySet.cs430 bool ISet<string>.IsProperSubsetOf(IEnumerable<string> other) in IsProperSubsetOf() method in Lucene.Net.Analysis.CharArraySet
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/Validation/
H A DValidationHelper.cs262 else if (group1Args.IsProperSubsetOf(group2Args)) in GetOverloadGroupEquivalence()
/dports/devel/swig/swig-4.0.2/Lib/csharp/
H A Dstd_set.i103 …public bool IsProperSubsetOf(global::System.Collections.Generic.IEnumerable<$typemap(cstype, T)> o…
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Collections.Generic/
H A DSortedSetTest.cs484 Assert.AreEqual (psb, s1.IsProperSubsetOf (s2)); in do_test_e()
/dports/devel/msbuild/msbuild-0.06/src/Build/Collections/RetrievableEntryHashSet/Originals/
H A DHashSet.cs548 public bool IsProperSubsetOf(IEnumerable<T> other) { in IsProperSubsetOf() method in System.Collections.Generic.HashSet
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.Immutable/ref/
H A DSystem.Collections.Immutable.cs54 bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other); in IsProperSubsetOf() method
418 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in ImmutableHashSet
461 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in ImmutableHashSet.Builder
909 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in ImmutableSortedSet
970 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in ImmutableSortedSet.Builder
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/ref/
H A DSystem.Collections.cs208 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in System.Collections.Generic.HashSet
582 … public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; } in IsProperSubsetOf() method in System.Collections.Generic.SortedSet

123