conventionschedule-android/app/src/main/java/com/adlerosn/brasilfurfest/helper/IntPluralizer.kt

14 lines
340 B
Kotlin

package com.adlerosn.brasilfurfest.helper
fun <T> Int.pluralize(none: T, single: T, more: T): T =
when {
this <= 0 -> none
this == 1 -> single
else -> more
}
fun <T> Int.pluralize(single: T, more: T): T =
when {
this <= 1 -> single
else -> more
}