Show5TImp

ostrat.Show5T$.Show5TImp
class Show5TImp[A1, A2, A3, A4, A5, R](val typeStr: String, val name1: String, fArg1: R => A1, val name2: String, fArg2: R => A2, val name3: String, fArg3: R => A3, val name4: String, fArg4: R => A4, val name5: String, fArg5: R => A5, val opt5: Option[A5], opt4In: Option[A4], opt3In: Option[A3], opt2In: Option[A2], opt1In: Option[A1])(implicit ev1: ShowT[A1], ev2: ShowT[A2], ev3: ShowT[A3], ev4: ShowT[A4], ev5: ShowT[A5]) extends Show5T[A1, A2, A3, A4, A5, R]

Show type class for 5 parameter case classes.

Attributes

Graph
Supertypes
trait Show5T[A1, A2, A3, A4, A5, R]
trait ShowNT[R]
trait ShowCompoundT[R]
trait ShowT[R]
trait TypeStr
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

override def strDecs(obj: R, way: ShowStyle, maxPlaces: Int): StrArr

Attributes

Definition Classes
final override def syntaxDepthT(obj: R): Int

Simple values such as Int, String, Double have a syntax depth of one. A Tuple3[String, Int, Double] has a depth of 2. Not clear whether this should always be determined at compile time or if sometimes it should be determined at runtime.

Simple values such as Int, String, Double have a syntax depth of one. A Tuple3[String, Int, Double] has a depth of 2. Not clear whether this should always be determined at compile time or if sometimes it should be determined at runtime.

Attributes

Definition Classes

Inherited methods

override def showDecT(obj: R, style: ShowStyle, maxPlaces: Int, minPlaces: Int): String

Attributes

Definition Classes
Inherited from:
ShowNT
override def showT(obj: R, style: ShowStyle): String

Attributes

Definition Classes
Inherited from:
ShowNT
override def strT(obj: R): String

Provides the standard string representation for the object. Its called ShowT to indicate this is a type class method that acts upon an object rather than a method on the object being shown.

Provides the standard string representation for the object. Its called ShowT to indicate this is a type class method that acts upon an object rather than a method on the object being shown.

Attributes

Definition Classes
Inherited from:
ShowCompoundT
def strs(obj: R, way: ShowStyle): StrArr

Attributes

Inherited from:
ShowNT

Concrete fields

val opt1: Option[A1]
val opt2: Option[A2]
val opt3: Option[A3]
val opt4: Option[A4]
val opt5: Option[A5]

The RSON type of T. This the only data that a ShowT instance requires, that can't be implemented through delegation to an object of type Show.

The RSON type of T. This the only data that a ShowT instance requires, that can't be implemented through delegation to an object of type Show.

Attributes