MIXAL
|
#include <expression.h>
Public Member Functions | |
AtomicValue () | |
AtomicValue (int32_t _value) | |
AtomicValue (const AtomicValue &atomicValue) | |
AtomicValue & | operator= (const AtomicValue &atomicValue) |
Public Attributes | |
bool | negative |
int32_t | value |
The evaluated value of an atomic.
Note that the sign is only used to distinguish +0
and -0
.
Definition at line 75 of file expression.h.
mixal::AtomicValue::AtomicValue | ( | ) |
|
explicit |
Initialize with an integer value.
Definition at line 60 of file atomic.cpp.
mixal::AtomicValue::AtomicValue | ( | const AtomicValue & | atomicValue | ) |
Initialize with another atomic value.
Definition at line 64 of file atomic.cpp.
AtomicValue & mixal::AtomicValue::operator= | ( | const AtomicValue & | atomicValue | ) |
The copy assign operation.
Definition at line 68 of file atomic.cpp.