Return a type object from a handle or an object
| 1615 | |
| 1616 | /// Return a type object from a handle or an object |
| 1617 | static type of(handle h) { return type(type::handle_of(h), borrowed_t{}); } |
| 1618 | |
| 1619 | // Defined in pybind11/cast.h |
| 1620 | /// Convert C++ type to handle if previously registered. Does not convert |