add small documentation for for_first_then_each

presentation
Andreas Stallinger 6 years ago
parent b4217ce9f2
commit f4b7a4f302
  1. 5
      src/util/LoopUtil.h

@ -13,6 +13,11 @@
#include <iterator>
/**
* for_first_then_each
* loop over the container from begin to end but handles the first element
* differently.
*/
template <typename Container, typename Function_first, typename Function_others>
void for_first_then_each(Container container, Function_first function_first, Function_others function_others)
{

Loading…
Cancel
Save