class SeqDecorator[A, CC[X] <: SeqOps[X, CC, _]] extends AnyRef
- Alphabetic
- By Inheritance
- SeqDecorator
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SeqDecorator(this: CC[A])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
def
intersperse[B >: A, C](start: B, sep: B, end: B): CC[B]
Adds the element
sepbetween each element of the sequence, prependingstartand appendingend.Adds the element
sepbetween each element of the sequence, prependingstartand appendingend. If the sequence has less than two elements, returnsstart +: this :+ end.- B
the element type of the returned $coll
- start
the element to prepend
- sep
the element to intersperse
- end
the element to append
- returns
a new collection of type
$Collconsisting of all elements of this $coll interspersed with the elementsep, beginning withstartand ending withend
List(1, 2, 3, 4).intersperse(-1, 0, 5) => List(-1, 1, 0, 2, 0, 3, 0, 4, 5)
Example: -
def
intersperse[B >: A](sep: B): CC[B]
Adds the element
sepbetween each element of the sequence.Adds the element
sepbetween each element of the sequence. If the sequence has less than two elements, the collection is unchanged.- B
the element type of the returned $coll
- sep
the element to intersperse
- returns
a new collection of type
$Collconsisting of all elements of this $coll interspersed with the elementsep
List(1, 2, 3, 4).intersperse(0) = List(1, 0, 2, 0, 3, 0, 4)
Example: -
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )