Searched refs:rich_compare (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h118 bool equal(object_api const &other) const { return rich_compare(other, Py_EQ); }
119 bool not_equal(object_api const &other) const { return rich_compare(other, Py_NE); }
120 bool operator<(object_api const &other) const { return rich_compare(other, Py_LT); }
121 bool operator<=(object_api const &other) const { return rich_compare(other, Py_LE); }
122 bool operator>(object_api const &other) const { return rich_compare(other, Py_GT); }
123 bool operator>=(object_api const &other) const { return rich_compare(other, Py_GE); }
158 bool rich_compare(object_api const &other, int value) const;
1434 bool object_api<D>::rich_compare(object_api const &other, int value) const { function in class:object_api

Completed in 7 milliseconds