MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / iterator

Class iterator

Source/ThirdParty/fmt/core.h:61–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59// std::back_insert_iterator impl to not include <iterator>
60template<class _Category, class _Ty, class _Diff = intptr, class _Pointer = _Ty *, class _Reference = _Ty&>
61struct iterator
62{
63 typedef _Category iterator_category;
64 typedef _Ty value_type;
65 typedef _Diff difference_type;
66 typedef _Pointer pointer;
67 typedef _Reference reference;
68};
69struct _Mutable_iterator_tag { };
70struct output_iterator_tag : _Mutable_iterator_tag { };
71typedef iterator<output_iterator_tag, void, void, void, void> _Outit;

Callers 2

beginMethod · 0.50
endMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected