Select

sbt.Select
final case class Select[S](s: S) extends ScopeAxis[S]

Select is a type constructor that is used to wrap type S to make a scope component, equivalent of Some in Option.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait ScopeAxis[S]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def isSelect: Boolean

Attributes

Definition Classes

Inherited methods

def fold[T](f: S => T, ifZero: => T, ifThis: => T): T

Attributes

Inherited from:
ScopeAxis
def foldStrict[T](f: S => T, ifZero: T, ifThis: T): T

Attributes

Inherited from:
ScopeAxis
def map[T](f: S => T): ScopeAxis[T]

Attributes

Inherited from:
ScopeAxis
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def toOption: Option[S]

Attributes

Inherited from:
ScopeAxis