Go to the source code of this file.
◆ PyDoc_STRVAR() [1/2]
| PyDoc_STRVAR |
( |
UnaryPredicate0D___doc__ | , |
|
|
"Base class for unary predicates that work on\n" ":class:`Interface0DIterator`. A UnaryPredicate0D is a functor that\n" "evaluates a condition on an Interface0DIterator and returns true or\n" "false depending on whether this condition is satisfied or not. The\n" "UnaryPredicate0D is used by invoking its __call__() method. Any\n" "inherited class must overload the __call__() method.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.\n" "\n" ".. method:: __call__(it)\n" "\n" " Must be overload by inherited classes.\n" "\n" " :arg it: The Interface0DIterator pointing onto the Interface0D at\n" " which we wish to evaluate the predicate.\n" " :type it: :class:`Interface0DIterator`\n" " :return: True if the condition is | satisfied, |
|
|
false otherwise.\n" " :rtype:bool\n" | ) |
◆ PyDoc_STRVAR() [2/2]
| PyDoc_STRVAR |
( |
UnaryPredicate0D_name_doc | , |
|
|
"The name of the unary 0D predicate.\n" "\n" ":type: str" | ) |
◆ UnaryPredicate0D___call__()
| static PyObject * UnaryPredicate0D___call__ |
( |
BPy_UnaryPredicate0D * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ UnaryPredicate0D___dealloc__()
◆ UnaryPredicate0D___init__()
| static int UnaryPredicate0D___init__ |
( |
BPy_UnaryPredicate0D * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ UnaryPredicate0D___repr__()
◆ UnaryPredicate0D_Init()
| int UnaryPredicate0D_Init |
( |
PyObject * | module | ) |
|
◆ UnaryPredicate0D_name_get()
◆ BPy_UnaryPredicate0D_getseters
| PyGetSetDef BPy_UnaryPredicate0D_getseters[] |
|
static |
Initial value:= {
{"name",
(setter) nullptr,
UnaryPredicate0D_name_doc,
nullptr},
{nullptr, nullptr, nullptr, nullptr, nullptr}
}
static PyObject * UnaryPredicate0D_name_get(BPy_UnaryPredicate0D *self, void *)
Definition at line 142 of file BPy_UnaryPredicate0D.cpp.
◆ UnaryPredicate0D_Type
| PyTypeObject UnaryPredicate0D_Type |