Physical Quantities  v1.0.0
C++ library of physical quantities, physical models, and units of measure for scientific computing. https://github.com/acodcha/phq
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
PhQ::Dimension::SubstanceAmount Class Reference

Base physical dimension of amount of substance. Typically denoted "N". One of seven independent base physical dimensions that form the physical dimension set of any unit of measure or physical quantity. Part of PhQ::Dimensions. More...

#include "SubstanceAmount.hpp"

Public Member Functions

constexpr SubstanceAmount ()=default
 Default constructor. Constructs a base physical dimension of amount of substance with a value of zero. More...
 
constexpr SubstanceAmount (const int8_t value)
 Constructor. Constructs a base physical dimension of amount of substance with a given value. More...
 
 ~SubstanceAmount () noexcept=default
 Destructor. Destroys this base physical dimension of amount of substance. More...
 
constexpr SubstanceAmount (const SubstanceAmount &other)=default
 Copy constructor. Constructs a base physical dimension of amount of substance by copying another one. More...
 
constexpr SubstanceAmountoperator= (const SubstanceAmount &other)=default
 Copy assignment operator. Assigns the value of this base physical dimension of amount of substance by copying from another one. More...
 
constexpr SubstanceAmount (SubstanceAmount &&other) noexcept=default
 Move constructor. Constructs a base physical dimension of amount of substance by moving another one. More...
 
constexpr SubstanceAmountoperator= (SubstanceAmount &&other) noexcept=default
 Move assignment operator. Assigns the value of this base physical dimension of amount of substance by moving another one. More...
 
constexpr int8_t Value () const noexcept
 Value of this base physical dimension. More...
 
std::string Print () const noexcept
 Prints this base physical dimension as a string. More...
 

Static Public Member Functions

static std::string_view Abbreviation () noexcept
 Abbreviation of this base physical dimension. More...
 
static std::string_view Label () noexcept
 Label of this base physical dimension. More...
 

Private Attributes

int8_t value {0}
 Value of this base physical dimension. More...
 

Detailed Description

Base physical dimension of amount of substance. Typically denoted "N". One of seven independent base physical dimensions that form the physical dimension set of any unit of measure or physical quantity. Part of PhQ::Dimensions.

Definition at line 40 of file SubstanceAmount.hpp.

Constructor & Destructor Documentation

◆ SubstanceAmount() [1/4]

constexpr PhQ::Dimension::SubstanceAmount::SubstanceAmount ( )
constexprdefault

Default constructor. Constructs a base physical dimension of amount of substance with a value of zero.

◆ SubstanceAmount() [2/4]

constexpr PhQ::Dimension::SubstanceAmount::SubstanceAmount ( const int8_t  value)
inlineexplicitconstexpr

Constructor. Constructs a base physical dimension of amount of substance with a given value.

Definition at line 48 of file SubstanceAmount.hpp.

◆ ~SubstanceAmount()

PhQ::Dimension::SubstanceAmount::~SubstanceAmount ( )
defaultnoexcept

Destructor. Destroys this base physical dimension of amount of substance.

◆ SubstanceAmount() [3/4]

constexpr PhQ::Dimension::SubstanceAmount::SubstanceAmount ( const SubstanceAmount other)
constexprdefault

Copy constructor. Constructs a base physical dimension of amount of substance by copying another one.

◆ SubstanceAmount() [4/4]

constexpr PhQ::Dimension::SubstanceAmount::SubstanceAmount ( SubstanceAmount &&  other)
constexprdefaultnoexcept

Move constructor. Constructs a base physical dimension of amount of substance by moving another one.

Member Function Documentation

◆ Abbreviation()

static std::string_view PhQ::Dimension::SubstanceAmount::Abbreviation ( )
inlinestaticnoexcept

Abbreviation of this base physical dimension.

Definition at line 75 of file SubstanceAmount.hpp.

Referenced by Print().

◆ Label()

static std::string_view PhQ::Dimension::SubstanceAmount::Label ( )
inlinestaticnoexcept

Label of this base physical dimension.

Definition at line 80 of file SubstanceAmount.hpp.

Referenced by PhQ::Dimensions::JSON(), PhQ::Dimensions::XML(), and PhQ::Dimensions::YAML().

◆ operator=() [1/2]

constexpr SubstanceAmount& PhQ::Dimension::SubstanceAmount::operator= ( const SubstanceAmount other)
constexprdefault

Copy assignment operator. Assigns the value of this base physical dimension of amount of substance by copying from another one.

◆ operator=() [2/2]

constexpr SubstanceAmount& PhQ::Dimension::SubstanceAmount::operator= ( SubstanceAmount &&  other)
constexprdefaultnoexcept

Move assignment operator. Assigns the value of this base physical dimension of amount of substance by moving another one.

◆ Print()

std::string PhQ::Dimension::SubstanceAmount::Print ( ) const
inlinenoexcept

Prints this base physical dimension as a string.

Definition at line 85 of file SubstanceAmount.hpp.

References Abbreviation(), and value.

Referenced by PhQ::Dimension::operator<<(), and PhQ::Dimensions::Print().

◆ Value()

constexpr int8_t PhQ::Dimension::SubstanceAmount::Value ( ) const
inlineconstexprnoexcept

Value of this base physical dimension.

Definition at line 70 of file SubstanceAmount.hpp.

References value.

Referenced by PhQ::Dimensions::JSON(), PhQ::Dimensions::XML(), and PhQ::Dimensions::YAML().

Member Data Documentation

◆ value

int8_t PhQ::Dimension::SubstanceAmount::value {0}
private

Value of this base physical dimension.

Definition at line 100 of file SubstanceAmount.hpp.

Referenced by Print(), and Value().


The documentation for this class was generated from the following file: