8 references to Values
Microsoft.CodeAnalysis (3)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2.cs (3)
100ICollection<TValue> IDictionary<TKey, TValue>.Values => Values; 104IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values => Values; 110ICollection IDictionary.Values => Values;
Microsoft.CodeAnalysis.UnitTests (5)
Collections\ImmutableSegmentedDictionaryTest.cs (5)
129Assert.Equal("b", dictionary.Values.Single()); 135Assert.Equal("b", dictionary.Values.Single()); 323Assert.False(map.Values.All((key, arg) => key == arg, "1")); 324Assert.True(map.Values.All((key, arg) => key.Length == arg, 1)); 326Assert.True(ImmutableSegmentedDictionary<int, int>.Empty.Values.All((_, _) => false, 0));