%PDF- %PDF-
Direktori : /proc/self/root/lib/python3/dist-packages/pythran/pythonic/include/builtins/set/ |
Current File : //proc/self/root/lib/python3/dist-packages/pythran/pythonic/include/builtins/set/intersection.hpp |
#ifndef PYTHONIC_INCLUDE_BUILTIN_SET_INTERSECTION_HPP #define PYTHONIC_INCLUDE_BUILTIN_SET_INTERSECTION_HPP #include "pythonic/include/types/set.hpp" #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace set { template <typename T, typename... Types> typename __combined<types::set<T>, Types...>::type intersection(types::set<T> const &set, Types const &... others); /* No rvalue overload possible because of return type modification.: * >>> a = set([1,2,3]) * >>> b = set([1., 2., 3.]) * >>> a.intersection(b) * set([1.0, 2.0, 3.0]) */ template <typename... Types> types::empty_set intersection(types::empty_set const &set, Types const &... others); DEFINE_FUNCTOR(pythonic::builtins::set, intersection); } } PYTHONIC_NS_END #endif