#ifndef PYTHONIC_INCLUDE_BUILTIN_BIN_HPP #define PYTHONIC_INCLUDE_BUILTIN_BIN_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/str.hpp" #include PYTHONIC_NS_BEGIN namespace builtins { template typename std::enable_if::value, types::str>::type bin(T const &v); DEFINE_FUNCTOR(pythonic::builtins, bin); } PYTHONIC_NS_END #endif