:orphan: .. index:: pair: struct; te_intset_ops .. _doxid-structte__intset__ops: struct te_intset_ops ==================== .. toctree:: :hidden: Overview ~~~~~~~~ A description of a specific intset type. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct te_intset_ops { // fields void(* :ref:`clear`)(void *val); void(* :ref:`set`)(int v, void *val); void(* :ref:`unset`)(int v, void *val); bool(* :ref:`check`)(int v, const void *val); }; .. _details-structte__intset__ops: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ A description of a specific intset type. Fields ------ .. index:: pair: variable; clear .. _doxid-structte__intset__ops_1a3e1a1db90aa4b2e4ac61fac031b34a1e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void(* clear)(void *val) Method to remove all elements from the set ``val``. .. index:: pair: variable; set .. _doxid-structte__intset__ops_1a6ed4b0be5f952b104641aa599ababad0: .. ref-code-block:: cpp :class: doxyrest-title-code-block void(* set)(int v, void *val) Method to add an integer ``v`` to the set ``val``. .. index:: pair: variable; unset .. _doxid-structte__intset__ops_1ae1ce881df215e0cdc42d9efe9f563f31: .. ref-code-block:: cpp :class: doxyrest-title-code-block void(* unset)(int v, void *val) Method to remove an integer ``v`` from the set ``val``. .. index:: pair: variable; check .. _doxid-structte__intset__ops_1a8519fc5d4df49c3e3e018e225a647830: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool(* check)(int v, const void *val) Method to check whether ``v`` is in ``val``.