We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As an API consumer, I need to consistently compare and calculate amounts of things In order to express quantitative relationships.
We'll be done when we can represent quantities with a:
Metric
Unit
SystemOfUnits
DerivedUnit
DerivedUnitTerm
Quantity
add
subtract
multiply
divide
equalTo
greaterThan
lessThan
RoundingPolicy
RoundingStrategy
StandardConversion
conversionFactor
UnitConverter
SIBaseUnit
Meter
Kilogram
Second
Ampere
Kelvin
Mole
Candela
⌦ Provide additional information here, if you need to.
The text was updated successfully, but these errors were encountered:
feat(quantity): create module
5e1a146
#3
docs(license): fix MIT template
751f6b3
gregswindle
No branches or pull requests
Feature Request
1. User story
As an API consumer,
I need to consistently compare and calculate amounts of things
In order to express quantitative relationships.
2. Acceptance criteria
We'll be done when we can represent quantities with a:
Metric
, which represents a standard of measurement for quantitiesUnit
, which represents a type ofMetric
that is part of aSystemOfUnits
SystemOfUnits
, which represents a set of related Units defined by a standard such as the International System of Units (SI)DerivedUnit
, which represents a combination of one or more base Units according to a specific equationDerivedUnitTerm
, which represents a term (i.e., a single Unit and its power, e.g., s–1) within aDerivedUnit
Quantity
, which specifies an amount that is measured in someMetric
, and usesadd
,subtract
,multiply
, anddivide
)equalTo
,greaterThan
,lessThan
)RoundingPolicy
to define the mathematical semantics of the rounding operationRoundingStrategy
to represent the type of rounding to be appliedStandardConversion
, which defines aconversionFactor
that can be used to convert aQuantity
in a sourceUnit
to aQuantity
in a targetUnit
UnitConverter
, which represents the conversion processSIBaseUnit
, which represents one of the base units defined in SIMeter
: SI unit of lengthKilogram
: SI unit of massSecond
: SI unit of timeAmpere
: SI unit of electric currentKelvin
: SI unit of temperatureMole
: SI unit of amount of substanceCandela
: SI unit of luminous intensity3. Notes
The text was updated successfully, but these errors were encountered: