1 instantiation of ValueWrapper
Microsoft.TemplateEngine.Utils (1)
ListExtensions.cs (1)
21ValueWrapper<TKey?> x = new ValueWrapper<TKey?>(grouper(element));
9 references to ValueWrapper
Microsoft.TemplateEngine.Utils (9)
ListExtensions.cs (9)
14Dictionary<ValueWrapper<TKey?>, List<TElement>> groups = new Dictionary<ValueWrapper<TKey?>, List<TElement>>(new ValueWrapperComparer<TKey?>(comparer)); 21ValueWrapper<TKey?> x = new ValueWrapper<TKey?>(grouper(element)); 37foreach (KeyValuePair<ValueWrapper<TKey?>, List<TElement>> entry in groups) 63return obj is ValueWrapper<T> v && Equals(Val, v.Val); 74private class ValueWrapperComparer<T> : IEqualityComparer<ValueWrapper<T>> 83public bool Equals(ValueWrapper<T> x, ValueWrapper<T> y) 96public int GetHashCode(ValueWrapper<T> obj)