All Downloads are FREE. Search and download functionalities are using the official Maven repository.

migrate.utils.Format.scala Maven / Gradle / Ivy

The newest version!
package migrate.utils

object Format {
  def plural(count: Int, name: String): String =
    plural(count, name, name + "s")

  def plural(count: Int, name: String, pluralName: String): String =
    if (count < 2) s"$count $name"
    else s"$count $pluralName"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy