Trait

scala.sys.Prop

Creator

Related Doc: package Prop

Permalink

trait Creator[+T] extends AnyRef

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( msg = ... )
Source
Prop.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Creator
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(key: String): Prop[T]

    Permalink

    Creates a Prop[T] of this type based on the given key.