scala.sys.Prop

Creator

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
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Creator
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

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

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

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

    Attributes
    abstract