From ef66c83fbccd7023d996227a805b8c6db608f72d Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 7 Nov 2017 02:46:32 -0800 Subject: [PATCH] Wiki page iterator-functions.md changed with summary [] by Paul --- .../eina-programming-guide/iterator-functions.md.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pages/eina-programming-guide/iterator-functions.md.txt b/pages/eina-programming-guide/iterator-functions.md.txt index 88aa8f738..c8f8acf6f 100644 --- a/pages/eina-programming-guide/iterator-functions.md.txt +++ b/pages/eina-programming-guide/iterator-functions.md.txt @@ -5,12 +5,6 @@ # Iterator Functions # -## Related Info ## - -* [Iterator Functions API](https://build.enlightenment.org/job/nightly_efl_gcc_x86_64/lastSuccessfulBuild/artifact/doc/html/group__Eina__Iterator__Group.html) - -* [Eina Iterator Example](https://build.enlightenment.org/job/nightly_efl_gcc_x86_64/lastSuccessfulBuild/artifact/doc/html/eina_iterator_01_8c-example.html) - Eina provides a set of iterator functions to manipulate data types, such as arrays. These functions allow access to container elements in a generic way, without knowing which container is used (similar to iterators in the C++ STL). Iterators only allow sequential access (that is, from one element to the next one). For random access, Eina provides accessor functions. @@ -21,4 +15,8 @@ To get the data and iterate, use the ``eina_iterator_next()`` function. To call In addition to iterator functions, each data type also owns a set of macros that provide the iterators, such as ``FOREACH`` or ``REVERSE_FOREACH``. -[Back to Eina Programming Guide](https://www.enlightenment.org/eina-programming-guide.md) \ No newline at end of file +## Further Reading ## + +* [Iterator Functions API](https://build.enlightenment.org/job/nightly_efl_gcc_x86_64/lastSuccessfulBuild/artifact/doc/html/group__Eina__Iterator__Group.html) + +* [Eina Iterator Example](https://build.enlightenment.org/job/nightly_efl_gcc_x86_64/lastSuccessfulBuild/artifact/doc/html/eina_iterator_01_8c-example.html) \ No newline at end of file