final case class NonEmptyConsOps[S, H, T](s: S) extends AnyVal with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- NonEmptyConsOps
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new NonEmptyConsOps(s: S)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def head(implicit ev: NonEmptyCons[S, H, T]): AppliedLens[S, H]
selects the first element of a data structure
S
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def nonEmptyCons(implicit ev: NonEmptyCons[S, H, T]): AppliedIso[S, (H, T)]
splits the head and the tail of a data structure
S
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def tail(implicit ev: NonEmptyCons[S, H, T]): AppliedLens[S, T]
selects the tail of a data structure
S