#ifndef PYTHONIC_BUILTIN_LIST_APPEND_HPP #define PYTHONIC_BUILTIN_LIST_APPEND_HPP #include "pythonic/include/builtins/list/append.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 append(types::list &seq, F &&value) { seq.push_back(std::forward(value)); return builtins::None; } template types::none_type append(types::list &&seq, F &&value) { seq.push_back(std::forward(value)); return builtins::None; } } } PYTHONIC_NS_END #endif