map-list.h revision a4030d5ca449e7e384bc699cd249ee704faaeab0
/*
* Inkscape::Util::map_list - apply a function over a list
*
* Authors:
* MenTaLguY <mental@rydia.net>
*
* 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 <algorithm>
inline MutableList<T>
{
}
return head;
} else {
return MutableList<T>();
}
}
}
inline List<T>
{
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:fileencoding=utf-8:textwidth=99 :