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

com.quantarray.anaheim.finance.Put.scala Maven / Gradle / Ivy

The newest version!
package com.quantarray.anaheim.finance

/**
 * Marker trait to designate an entity as a put.
 *
 * @tparam T Entity type.
 */
trait Put[T] {

  def value: T

  override def toString: String = s"Put($value)"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy