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.
Kai Bösefeldt ebbe6d3244 #20 Updated license headers. 2 years ago
..
src #20 Updated license headers. 2 years ago
README.md Added readme files. 3 years ago
build.gradle.kts Added missing unit tests and minor fixes. 3 years ago
config.gradle.kts Activated code coverage and changed way to exclude items from special file name to 'Generated' annotation. 3 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>"
}