ShowTSeqLike

ostrat.ShowTSeqLike
trait ShowTSeqLike[A, R] extends ShowCompoundT[R] with ShowT[R]

Attributes

Graph
Supertypes
trait ShowCompoundT[R]
trait ShowT[R]
trait TypeStr
class Object
trait Matchable
class Any
Known subtypes
class ArrShowT[A, R]
class PersistSeqLike[A, R]
class PersistIterable[A, R]
class ArrRefPersist[A]
class SeqSpecShowT[A, R]
trait ShowIterable[A, R]
class ShowIterableClass[A, R]

Members list

Concise view

Value members

Abstract methods

def evA: ShowT[A]

Concrete methods

override def typeStr: String

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

Definition Classes

Inherited methods

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

Attributes

Inherited from:
ShowT
def showT(obj: R, style: ShowStyle): String

Attributes

Inherited from:
ShowT
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 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

Inherited from:
ShowT