:orphan: .. index:: pair: struct; tad_int_expr_t .. _doxid-structtad__int__expr__t: struct tad_int_expr_t ===================== .. toctree:: :hidden: Overview ~~~~~~~~ Struct for arithmetic (and boolean?) expressions in traffic operations Expression is constructed with for arithmetical operations from constants and "variables", which are references to iterated artuments. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct tad_int_expr_t { // fields :ref:`tad_expr_node_type` :ref:`n_type`; size_t :ref:`d_len`; int32_t :ref:`val_i32`; int64_t :ref:`val_i64`; int :ref:`arg_num`; tad_int_expr_t* :ref:`exprs`; }; .. _details-structtad__int__expr__t: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Struct for arithmetic (and boolean?) expressions in traffic operations Expression is constructed with for arithmetical operations from constants and "variables", which are references to iterated artuments. Fields ------ .. index:: pair: variable; n_type .. _doxid-structtad__int__expr__t_1a5d9859321c96eb56c06c1aee883f1664: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tad_expr_node_type` n_type node type .. index:: pair: variable; d_len .. _doxid-structtad__int__expr__t_1a035067379437fcb91ea8a6476decc85d: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t d_len length of data: * for node with operation is length of array with operands. * for constant node is 'sizeof' integer variable, may be 4 or 8. .. index:: pair: variable; val_i32 .. _doxid-structtad__int__expr__t_1ae274d860c951c45e2cf2c45e3140ebfb: .. ref-code-block:: cpp :class: doxyrest-title-code-block int32_t val_i32 int 32 value .. index:: pair: variable; val_i64 .. _doxid-structtad__int__expr__t_1a115824d24e7aeb4f520af3c132a08dbd: .. ref-code-block:: cpp :class: doxyrest-title-code-block int64_t val_i64 int 64 value .. index:: pair: variable; arg_num .. _doxid-structtad__int__expr__t_1aaf404d3a15a12f53151b6addf8d4242c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int arg_num number of referenced argument .. index:: pair: variable; exprs .. _doxid-structtad__int__expr__t_1a197cb8fe3a14c08cc47c843a08e44f75: .. ref-code-block:: cpp :class: doxyrest-title-code-block tad_int_expr_t* exprs array with operands