2 implementations of IIterator
mscorlib (2)
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (1)
75
internal sealed class EnumeratorToIteratorAdapter<T> :
IIterator
<T>, IBindableIterator
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
80
private sealed class NonGenericToGenericIterator :
IIterator
<object>
10 references to IIterator
mscorlib (10)
system\internal.cs (2)
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();
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (1)
162
public
IIterator
<IKeyValuePair<TKey, TValue>> First()
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (2)
37
internal
IIterator
<T> First_Stub<T>()
112
return (object)((
IIterator
<T>)this).Current;
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (2)
546
private
IIterator
<T> _iterator;
548
public IteratorOfTToIteratorAdapter(
IIterator
<T> iterator)
system\runtime\interopservices\windowsruntime\iiterable.cs (1)
24
IIterator
<T> First();
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (2)
111
private
IIterator
<T> m_iterator;
116
internal IteratorToEnumeratorAdapter(
IIterator
<T> iterator)