xtd 0.2.0
Loading...
Searching...
No Matches
ienumerable_abstract.hpp
Go to the documentation of this file.
1
4#pragma once
5
6#if !defined(__XTD_IENUMERABLE_INTERNAL__)
7#error "Do not include this file: Internal use only. Include <xtd/collections/generic/ienumerable> or <xtd/xtd/collections/generic/ienumerable.hpp> instead."
8#endif
9
11namespace xtd {
13 namespace collections {
15 namespace generic {
17 template <class type_t>
18 class ienumerable;
20
35 class ienumerable_abstract {
36 private:
37 template<class type_t>
38 friend class ienumerable;
39
40 ienumerable_abstract() = default;
41 };
42 }
43 }
44}
friend class ienumerable
Exposes an enumerator, which supports a simple iteration over a non-generic collection.
Definition ienumerable_abstract.hpp:38
Exposes the enumerator, which supports a simple iteration over a collection of a specified type.
Definition ienumerable.hpp:40
The xtd::collections::generic namespace contains interfaces and classes that define generic collectio...
Definition comparer.hpp:16
The xtd::collections namespace contains interfaces and classes that define various collections of obj...
Definition any_pair.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8