SI 2.5.4
A header only c++ library that provides type safety and user defined literals for handling physical values defined in the International System of Units.
Loading...
Searching...
No Matches
angular_frequency.h
Go to the documentation of this file.
1
12#pragma once
13
14#include "angle.h"
16#include "detail/unit.h"
17#include "frequency.h"
18#include "time.h"
19
20namespace SI {
21
23template <typename _type, typename _ratio>
24using angular_frequency_t = detail::unit_t<'w', std::ratio<1>, _type, _ratio>;
25
26namespace detail {
29} // namespace detail
30} // namespace SI
Definition absorbed_dose.h:18
#define BUILD_UNIT_FROM_DIVISION(RESULTING_UNIT_T, DIVIDEND_UNIT_T, DIVISOR_UNIT_T)
Definition operator_helpers.h:22
#define BUILD_UNIT_FROM_MULTIPLICATION(RESULTING_UNIT, UNIT_LHS, UNIT_RHS)
Definition operator_helpers.h:54
base template class for holding values of type _type to be multiplied with a ratio _ratio
Definition unit.h:51