d2c_sysiter |
Top Previous Next |
Pretranslated C++ code > Delphi RTL/VCL > C++ code for C++Builder > d2c_sysiter d2c_sysiter contains Delphi2Cpp helper code to enable range based for-loops.
template<class T> class DynamicArrayIter ...
template<class T> const DynamicArrayIter<T> begin(const DynamicArray<T>& Array ) ... template<class T> const DynamicArrayIter<T> end(const DynamicArray<T>& Array ) ... template <class T, size_t N> T* begin(T (&array_of_const)[N]) ... template <class T, size_t N> T* end(T (&array_of_const)[N]) ...
template<class T, T minEl, T maxEl> class SetIter ... template<class T, T minEl, T maxEl> SetIter<T, minEl, maxEl> begin(const System::Set<T, minEl, maxEl>& ASet ) ... template<class T, T minEl, T maxEl> SetIter<T, minEl, maxEl> end(const System::Set<T, minEl, maxEl>& ASet ) ...
|
This page belongs to the Delphi2Cpp Documentation |
Delphi2Cpp home Content |