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

fly4s.data.Location.scala Maven / Gradle / Ivy

The newest version!
package fly4s.data

object Location {
  def apply(value: String): Location = new Location(value)
}

object Locations {
  def apply(values: String*): List[Location] = Locations(values)
  def apply(values: Seq[String])(implicit dummyImplicit: DummyImplicit): List[Location] =
    values.map(Location(_)).toList
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy