|
| using | juce::Years = std::chrono::duration<double, std::ratio<31556952>> |
| | A type used to store years with double precision.
|
| using | juce::Months = std::chrono::duration<double, std::ratio<2629746>> |
| | A type used to store months with double precision.
|
| using | juce::Weeks = std::chrono::duration<double, std::ratio<604800>> |
| | A type used to store weeks with double precision.
|
| using | juce::Days = std::chrono::duration<double, std::ratio<86400>> |
| | A type used to store days with double precision.
|
| using | juce::Hours = std::chrono::duration<double, std::ratio<3600>> |
| | A type used to store hours with double precision.
|
| using | juce::Minutes = std::chrono::duration<double, std::ratio<60>> |
| | A type used to store minutes with double precision.
|
| using | juce::Seconds = std::chrono::duration<double, std::ratio<1>> |
| | A type used to store seconds with double precision.
|
| using | juce::Milliseconds = std::chrono::duration<double, std::milli> |
| | A type used to store milliseconds with double precision.
|
| using | juce::Microseconds = std::chrono::duration<double, std::micro> |
| | A type used to store microseconds with double precision.
|
| using | juce::Nanoseconds = std::chrono::duration<double, std::nano> |
| | A type used to store nanoseconds with double precision.
|