| 2923 | /// returned by `__getstate__` is the same as the argument accepted by `__setstate__`. |
| 2924 | template <typename GetState, typename SetState> |
| 2925 | detail::initimpl::pickle_factory<GetState, SetState> pickle(GetState &&g, SetState &&s) { |
| 2926 | return {std::forward<GetState>(g), std::forward<SetState>(s)}; |
| 2927 | } |
| 2928 | |
| 2929 | PYBIND11_NAMESPACE_BEGIN(detail) |
| 2930 |
no outgoing calls