Your IP : 216.73.216.213


Current Path : /opt/alt/python37/lib64/python3.7/site-packages/Cython/Includes/libcpp/
Upload File :
Current File : //opt/alt/python37/lib64/python3.7/site-packages/Cython/Includes/libcpp/typeindex.pxd

from libcpp cimport bool
from .typeinfo cimport type_info

# This class is C++11-only
cdef extern from "<typeindex>" namespace "std" nogil:
    cdef cppclass type_index:
        type_index(const type_info &)
        const char* name()
        size_t hash_code()
        bool operator==(const type_index &)
        bool operator!=(const type_index &)
        bool operator<(const type_index &)
        bool operator<=(const type_index &)
        bool operator>(const type_index &)
        bool operator>=(const type_index &)