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.
|
#include "area.h"
#include "detail/number_parser.h"
#include "detail/operator_helpers.h"
#include "detail/unit.h"
#include "detail/unit_symbol.h"
#include "luminous_flux.h"
Go to the source code of this file.
Classes | |
struct | SI::unit_symbol< 'i', std::ratio< 1 > > |
struct | SI::unit_symbol< 'i', _ratio > |
Namespaces | |
SI | |
SI::detail | |
Namespace containing implementation details for SI. | |
SI::literals | |
Typedefs | |
template<typename _type , class _ratio = std::ratio<1>> | |
using | SI::illuminance_t = detail::unit_t< 'i', std::ratio< 1 >, _type, _ratio > |
template<typename _type > | |
using | SI::atto_lux_t = illuminance_t< _type, std::atto > |
specific units More... | |
template<typename _type > | |
using | SI::femto_lux_t = illuminance_t< _type, std::femto > |
template<typename _type > | |
using | SI::pico_lux_t = illuminance_t< _type, std::pico > |
template<typename _type > | |
using | SI::nano_lux_t = illuminance_t< _type, std::nano > |
template<typename _type > | |
using | SI::micro_lux_t = illuminance_t< _type, std::micro > |
template<typename _type > | |
using | SI::milli_lux_t = illuminance_t< _type, std::milli > |
template<typename _type > | |
using | SI::lux_t = illuminance_t< _type, std::ratio< 1 > > |
template<typename _type > | |
using | SI::kilo_lux_t = illuminance_t< _type, std::kilo > |
template<typename _type > | |
using | SI::mega_lux_t = illuminance_t< _type, std::mega > |
template<typename _type > | |
using | SI::giga_lux_t = illuminance_t< _type, std::giga > |
template<typename _type > | |
using | SI::tera_lux_t = illuminance_t< _type, std::tera > |
template<typename _type > | |
using | SI::peta_lux_t = illuminance_t< _type, std::peta > |
template<typename _type > | |
using | SI::exa_lux_t = illuminance_t< _type, std::exa > |
Functions | |
template<char... _digits> | |
constexpr atto_lux_t< int64_t > | SI::literals::operator""_alx () |
template<char... _digits> | |
constexpr femto_lux_t< int64_t > | SI::literals::operator""_flx () |
template<char... _digits> | |
constexpr pico_lux_t< int64_t > | SI::literals::operator""_plx () |
template<char... _digits> | |
constexpr nano_lux_t< int64_t > | SI::literals::operator""_nlx () |
template<char... _digits> | |
constexpr micro_lux_t< int64_t > | SI::literals::operator""_ulx () |
template<char... _digits> | |
constexpr milli_lux_t< int64_t > | SI::literals::operator""_mlx () |
template<char... _digits> | |
constexpr lux_t< int64_t > | SI::literals::operator""_lx () |
template<char... _digits> | |
constexpr kilo_lux_t< int64_t > | SI::literals::operator""_klx () |
template<char... _digits> | |
constexpr mega_lux_t< int64_t > | SI::literals::operator""_Mlx () |
template<char... _digits> | |
constexpr giga_lux_t< int64_t > | SI::literals::operator""_Glx () |
template<char... _digits> | |
constexpr tera_lux_t< int64_t > | SI::literals::operator""_Tlx () |
template<char... _digits> | |
constexpr peta_lux_t< int64_t > | SI::literals::operator""_Plx () |
template<char... _digits> | |
constexpr exa_lux_t< int64_t > | SI::literals::operator""_Elx () |
constexpr atto_lux_t< long double > | SI::literals::operator""_alx (long double value) |
constexpr femto_lux_t< long double > | SI::literals::operator""_flx (long double value) |
constexpr pico_lux_t< long double > | SI::literals::operator""_plx (long double value) |
constexpr nano_lux_t< long double > | SI::literals::operator""_nlx (long double value) |
constexpr micro_lux_t< long double > | SI::literals::operator""_ulx (long double value) |
constexpr milli_lux_t< long double > | SI::literals::operator""_mlx (long double value) |
constexpr lux_t< long double > | SI::literals::operator""_lx (long double value) |
constexpr kilo_lux_t< long double > | SI::literals::operator""_klx (long double value) |
constexpr mega_lux_t< long double > | SI::literals::operator""_Mlx (long double value) |
constexpr giga_lux_t< long double > | SI::literals::operator""_Glx (long double value) |
constexpr tera_lux_t< long double > | SI::literals::operator""_Tlx (long double value) |
constexpr peta_lux_t< long double > | SI::literals::operator""_Plx (long double value) |
constexpr exa_lux_t< long double > | SI::literals::operator""_Elx (long double value) |