5 interfaces inheriting from IIterable
mscorlib (5)
system\runtime\interopservices\windowsruntime\imap.cs (2)
22
internal interface IMap<K, V> :
IIterable
<IKeyValuePair<K, V>>
40
internal interface IMapView<K, V> :
IIterable
<IKeyValuePair<K, V>>
system\runtime\interopservices\windowsruntime\ivector.cs (3)
22
internal interface IVector<T> :
IIterable
<T>
47
internal interface IVector_Raw<T> :
IIterable
<T>
71
internal interface IVectorView<T> :
IIterable
<T>
7 references to IIterable
mscorlib (7)
system\internal.cs (3)
228
WinRT_IEnumerable<string>(null, null, null); typeof(
IIterable
<string>).ToString(); typeof(IIterator<string>).ToString();
229
WinRT_IEnumerable<object>(null, null, null); typeof(
IIterable
<object>).ToString(); typeof(IIterator<object>).ToString();
260
static void WinRT_IEnumerable<T>(IterableToEnumerableAdapter iterableToEnumerableAdapter, EnumerableToIterableAdapter enumerableToIterableAdapter,
IIterable
<T> iterable)
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (2)
41
IIterable
<T> _this = JitHelpers.UnsafeCast<
IIterable
<T>>(this);
system\runtime\interopservices\windowsruntime\maptocollectionadapter.cs (2)
158
IIterable
<KeyValuePair<K, V>> _this = JitHelpers.UnsafeCast<
IIterable
<KeyValuePair<K, V>>>(this);