You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
straightway 9cd202bac2 Updated to gradle 5.6.4. 4 years ago
gradle/wrapper Updated to gradle 5.6.4. 4 years ago
samples Fixed ktlint issues. 4 years ago
src Fixed ktlint issues. 4 years ago
.gitattributes Moved units module to own repository 5 years ago
.gitignore Adapted .gitignore to ignore idea project stuff. 5 years ago
Coding.md Replaced GitHub by codeberg. 4 years ago
LICENSE Moved units module to own repository 5 years ago
README.md Replaced GitHub by codeberg. 4 years ago
build.gradle Fixed ktlint issues. 4 years ago
detekt-config.yml Fixed detekt configuration and fixed or suppressed issues. 4 years ago
gradlew Moved units module to own repository 5 years ago
gradlew.bat Moved units module to own repository 5 years ago
projectDependencies.gradle Changed copyright in header: removed GitHub 4 years ago
projectSpecific.gradle Changed copyright in header: removed GitHub 4 years ago
settings.gradle Changed copyright in header: removed GitHub 4 years ago
version.gradle Changed copyright in header: removed GitHub 4 years ago

README.md

units

This kotlin library allows using numerical values with units like meter, kelvin or kilogram.

To have a number with an attached unit, use the index operator, e.g.

val temperature = 273[kelvin]

For more samples, see the samples.

Status

This software is in pre-release state. Every aspect of it may change without announcement or notification or downward compatibility. As soon as version 1.0 is reached, all subsequent changes for sub versions will be downward compatible. Breaking changes will then only occur with a new major version with according deprecation marking.

Include in gradle builds

To include this library in a gradle build, add

repositories {
    ...
    maven { url "https://pages.codeberg.org/straightway/repo" }
}

Then you can simply configure in your dependencies:

dependencies {
    compile "straightway:units:<version>"
}