#ifndef PYTHONIC_INCLUDE_OPERATOR_GETITEM_HPP #define PYTHONIC_INCLUDE_OPERATOR_GETITEM_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto getitem(A &&a, B &&b) -> decltype(std::forward(a)[std::forward(b)]); DEFINE_FUNCTOR(pythonic::operator_, getitem); } PYTHONIC_NS_END #endif