Packages

object Prop

Source
Prop.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Prop
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Creator[+T] extends AnyRef

    A creator of property instances.

    A creator of property instances. For any type T, if an implicit parameter of type Creator[T] is in scope, a Prop[T] can be created via this object's apply method.

    Annotations
    @implicitNotFound()

Value Members

  1. def apply[T](key: String)(implicit arg0: Creator[T]): Prop[T]
  2. implicit object DoubleProp extends CreatorImpl[Double]
  3. implicit object FileProp extends CreatorImpl[File]
  4. implicit object IntProp extends CreatorImpl[Int]
  5. implicit object StringProp extends CreatorImpl[String]