#ifndef PYTHONIC_BUILTIN_LIST_REVERSE_HPP #define PYTHONIC_BUILTIN_LIST_REVERSE_HPP #include "pythonic/include/builtins/list/reverse.hpp" #include "pythonic/builtins/None.hpp" #include "pythonic/types/list.hpp" #include "pythonic/types/NoneType.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace list { template types::none_type reverse(types::list &seq) { std::reverse(seq.begin(), seq.end()); return builtins::None; } } } PYTHONIC_NS_END #endif