/* * Inkscape::Util::map_list - apply a function over a list * * Authors: * MenTaLguY * * Copyright (C) 2004 MenTaLguY * * Released under GNU GPL, read the file 'COPYING' for more information */ #ifndef SEEN_INKSCAPE_UTIL_MAP_LIST_H #define SEEN_INKSCAPE_UTIL_MAP_LIST_H #include #include "util/list.h" namespace Inkscape { namespace Util { template inline MutableList map_list(UnaryFunction f, InputIterator start, InputIterator end) { if ( start != end ) { MutableList head(f(*start)); MutableList tail(head); while ( ++start != end ) { MutableList cell(f(*start)); set_rest(tail, cell); tail = cell; } return head; } else { return MutableList(); } } template inline MutableList map_list(UnaryFunction f, List list) { return map_list(f, list, List()); } template inline List map_list_in_place(UnaryFunction f, List start, List end=List()) { std::transform(start, end, start, f); return start; } } } #endif /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :