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

io.fintrospect.parameters.OptionalBindable.scala Maven / Gradle / Ivy

There is a newer version: 12.21.1
Show newest version
package io.fintrospect.parameters

/**
  * For optional Parameters, adds the ability to bind an Optional value as well as a concrete value
  */
trait OptionalBindable[T, B <: Binding] extends Bindable[T, B] {
  def -->(value: Option[T]): Iterable[B] = value.map(-->).getOrElse(Nil)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy