kotools / libraries

Multiplatform libraries for expressive programming with Kotlin.
https://kotools.github.io/libraries
MIT License
0 stars 0 forks source link

New `NotBlankString.length` property #143

Closed LVMVRQUXL closed 1 year ago

LVMVRQUXL commented 1 year ago

Description

Implement the following property:

import kotools.types.number.StrictlyPositiveInt
import kotools.types.text.NotBlankString

/** Returns the length of this string. */
val NotBlankString.length: StrictlyPositiveInt get() = TODO()

Checklist

LVMVRQUXL commented 1 year ago

Done.

LVMVRQUXL commented 1 year ago

Update the Work in progress section in changelog.

LVMVRQUXL commented 1 year ago

Done.