← Back
Editing: count.hpp
#ifndef PYTHONIC_INCLUDE_DISPATCH_COUNT_HPP #define PYTHONIC_INCLUDE_DISPATCH_COUNT_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace __dispatch__ { template <class Any, class Value> auto count(Any &&any, Value &&value) -> decltype(any.count(std::forward<Value>(value))); DEFINE_FUNCTOR(pythonic::__dispatch__, count); } PYTHONIC_NS_END #endif
Save File
Cancel