| 4615 | |
| 4616 | template <class T> |
| 4617 | struct SwigPySequence_ArrowProxy |
| 4618 | { |
| 4619 | SwigPySequence_ArrowProxy(const T& x): m_value(x) {} |
| 4620 | const T* operator->() const { return &m_value; } |
| 4621 | operator const T*() const { return &m_value; } |
| 4622 | T m_value; |
| 4623 | }; |
| 4624 | |
| 4625 | template <class T, class Reference > |
| 4626 | struct SwigPySequence_InputIterator |
nothing calls this directly
no outgoing calls
no test coverage detected