MIXAL
Public Member Functions | Public Attributes | List of all members
mixal::AtomicValue Struct Reference

#include <expression.h>

Public Member Functions

 AtomicValue ()
 
 AtomicValue (int32_t _value)
 
 AtomicValue (const AtomicValue &atomicValue)
 
AtomicValueoperator= (const AtomicValue &atomicValue)
 

Public Attributes

bool negative
 
int32_t value
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ AtomicValue() [1/3]

mixal::AtomicValue::AtomicValue ( )

Initialize with +0.

Definition at line 58 of file atomic.cpp.

58 : negative(), value() {}

◆ AtomicValue() [2/3]

mixal::AtomicValue::AtomicValue ( int32_t  _value)
explicit

Initialize with an integer value.

Definition at line 60 of file atomic.cpp.

60  : negative(), value(_value) {
61  negative = _value < 0;
62 }

◆ AtomicValue() [3/3]

mixal::AtomicValue::AtomicValue ( const AtomicValue atomicValue)

Initialize with another atomic value.

Definition at line 64 of file atomic.cpp.

64  :
65  negative(atomicValue.negative), value(atomicValue.value) {
66 }

Member Function Documentation

◆ operator=()

AtomicValue & mixal::AtomicValue::operator= ( const AtomicValue atomicValue)

The copy assign operation.

Definition at line 68 of file atomic.cpp.

68  {
69  negative = atomicValue.negative;
70  value = atomicValue.value;
71  return *this;
72 }

The documentation for this struct was generated from the following files: