Include file:
#include "mcrl2/atermpp/aterm_int.h
atermpp::
aterm_int
¶An integer term stores a single std::size_t value. It carries no arguments.
A special function symbol is used to identify integer terms internally.
aterm_int
() noexcept¶Default constructor.
aterm_int
(std::size_t value)¶Constructs an integer term from a value.
Parameters:
value The value of the new integer.
aterm_int
(const aterm_int &other) noexcept = default¶This class has user-declared copy constructor so declare default copy and move operators.
swap
(aterm_int &t) noexcept¶Swaps two integer terms without changing the protection.
Parameters:
t The term that is swapped with the current term.
value
() const noexcept¶Provide the value stored in an aterm.
Returns: The value of the integer term.