Packages

c

pprint

Truncated

class Truncated extends Iterator[Str]

Wraps an input iterator of colored fansi.Strs, and produces the same fansi.Strs but truncated once the wrapped-at-width text reaches beyond a certain height

Linear Supertypes
Iterator[Str], TraversableOnce[Str], GenTraversableOnce[Str], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Truncated
  2. Iterator
  3. TraversableOnce
  4. GenTraversableOnce
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Truncated(chunks0: Iterator[Str], width: Int, height: Int, truncationMarker: String = "...")

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
    Definition Classes
    Iterator

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++[B >: Str](that: ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  4. def /:[B](z: B)(op: (B, Str) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  5. def :\[B](z: B)(op: (Str, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  8. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  10. def aggregate[B](z: ⇒ B)(seqop: (B, Str) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def buffered: BufferedIterator[Str]
    Definition Classes
    Iterator
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  14. def collect[B](pf: PartialFunction[Str, B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  15. def collectFirst[B](pf: PartialFunction[Str, B]): Option[B]
    Definition Classes
    TraversableOnce
  16. def completedLineCount: Int
  17. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  18. def copyToArray[B >: Str](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  19. def copyToArray[B >: Str](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: Str](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToBuffer[B >: Str](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  22. def corresponds[B](that: GenTraversableOnce[B])(p: (Str, B) ⇒ Boolean): Boolean
    Definition Classes
    Iterator
  23. def count(p: (Str) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def drop(n: Int): Iterator[Str]
    Definition Classes
    Iterator
  25. def dropWhile(p: (Str) ⇒ Boolean): Iterator[Str]
    Definition Classes
    Iterator
  26. def duplicate: (Iterator[Str], Iterator[Str])
    Definition Classes
    Iterator
  27. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  29. def exists(p: (Str) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  30. def filter(p: (Str) ⇒ Boolean): Iterator[Str]
    Definition Classes
    Iterator
  31. def filterNot(p: (Str) ⇒ Boolean): Iterator[Str]
    Definition Classes
    Iterator
  32. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. def find(p: (Str) ⇒ Boolean): Option[Str]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  34. def flatMap[B](f: (Str) ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  35. def fold[A1 >: Str](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def foldLeft[B](z: B)(op: (B, Str) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def foldRight[B](z: B)(op: (Str, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def forall(p: (Str) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  39. def foreach[U](f: (Str) ⇒ U): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  40. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  41. def grouped[B >: Str](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  42. def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  43. def hasNext: Boolean
    Definition Classes
    Truncated → Iterator
  44. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  45. def indexOf[B >: Str](elem: B, from: Int): Int
    Definition Classes
    Iterator
  46. def indexOf[B >: Str](elem: B): Int
    Definition Classes
    Iterator
  47. def indexWhere(p: (Str) ⇒ Boolean, from: Int): Int
    Definition Classes
    Iterator
  48. def indexWhere(p: (Str) ⇒ Boolean): Int
    Definition Classes
    Iterator
  49. def isEmpty: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  50. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  51. def isTraversableAgain: Boolean
    Definition Classes
    Iterator → GenTraversableOnce
  52. def isTruncated: Boolean
  53. def lastLineLength: Int
  54. def length: Int
    Definition Classes
    Iterator
  55. val lineLengths: Buffer[Int]
  56. def map[B](f: (Str) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  57. def max[B >: Str](implicit cmp: Ordering[B]): Str
    Definition Classes
    TraversableOnce → GenTraversableOnce
  58. def maxBy[B](f: (Str) ⇒ B)(implicit cmp: Ordering[B]): Str
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def min[B >: Str](implicit cmp: Ordering[B]): Str
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def minBy[B](f: (Str) ⇒ B)(implicit cmp: Ordering[B]): Str
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. def next(): Str

    Truncated streams the chunks one by one until it reaches the height limit; then, it buffers up to one entire row worth of chunks to check whether it overshoots.

    Truncated streams the chunks one by one until it reaches the height limit; then, it buffers up to one entire row worth of chunks to check whether it overshoots. If it overshoots, it discards the chunks and prints "..." instead. If not, the buffered chunks get printed all at once.

    Definition Classes
    Truncated → Iterator
  66. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  69. def padTo[A1 >: Str](len: Int, elem: A1): Iterator[A1]
    Definition Classes
    Iterator
  70. def partition(p: (Str) ⇒ Boolean): (Iterator[Str], Iterator[Str])
    Definition Classes
    Iterator
  71. def patch[B >: Str](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  72. def product[B >: Str](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def reduce[A1 >: Str](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def reduceLeft[B >: Str](op: (B, Str) ⇒ B): B
    Definition Classes
    TraversableOnce
  75. def reduceLeftOption[B >: Str](op: (B, Str) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduceOption[A1 >: Str](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceRight[B >: Str](op: (Str, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduceRightOption[B >: Str](op: (Str, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reversed: List[Str]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  80. def sameElements(that: Iterator[_]): Boolean
    Definition Classes
    Iterator
  81. def scanLeft[B](z: B)(op: (B, Str) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  82. def scanRight[B](z: B)(op: (Str, B) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  83. def seq: Iterator[Str]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  84. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  86. def slice(from: Int, until: Int): Iterator[Str]
    Definition Classes
    Iterator
  87. def sliceIterator(from: Int, until: Int): Iterator[Str]
    Attributes
    protected
    Definition Classes
    Iterator
  88. def sliding[B >: Str](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  89. def span(p: (Str) ⇒ Boolean): (Iterator[Str], Iterator[Str])
    Definition Classes
    Iterator
  90. def sum[B >: Str](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  92. def take(n: Int): Iterator[Str]
    Definition Classes
    Iterator
  93. def takeWhile(p: (Str) ⇒ Boolean): Iterator[Str]
    Definition Classes
    Iterator
  94. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Str, Col[Str]]): Col[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def toArray[B >: Str](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def toBuffer[B >: Str]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toIndexedSeq: IndexedSeq[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toIterable: Iterable[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toIterator: Iterator[Str]
    Definition Classes
    Iterator → GenTraversableOnce
  100. def toList: List[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toMap[T, U](implicit ev: <:<[Str, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toResult: Result
  103. def toSeq: Seq[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toSet[B >: Str]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toStream: Stream[Str]
    Definition Classes
    Iterator → GenTraversableOnce
  106. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  107. def toTraversable: Traversable[Str]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  108. def toVector: Vector[Str]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  112. def withFilter(p: (Str) ⇒ Boolean): Iterator[Str]
    Definition Classes
    Iterator
  113. def zip[B](that: Iterator[B]): Iterator[(Str, B)]
    Definition Classes
    Iterator
  114. def zipAll[B, A1 >: Str, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
    Definition Classes
    Iterator
  115. def zipWithIndex: Iterator[(Str, Int)]
    Definition Classes
    Iterator

Inherited from Iterator[Str]

Inherited from TraversableOnce[Str]

Inherited from GenTraversableOnce[Str]

Inherited from AnyRef

Inherited from Any

Ungrouped