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