implicit
class
PimpedHtmlCollection extends EasySeq[Element]
Instance Constructors
-
new
PimpedHtmlCollection(coll: Collection)
Type Members
-
type
Self = Seq[Element]
-
class
WithFilter extends FilterMonadic[A, Repr]
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
++[B >: Element, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
++:[B >: Element, That](that: Traversable[B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
++:[B >: Element, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
+:[B >: Element, That](elem: B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
/:[B](z: B)(op: (B, Element) ⇒ B): B
-
def
:+[B >: Element, That](elem: B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
:\[B](z: B)(op: (Element, B) ⇒ B): B
-
final
def
==(arg0: Any): Boolean
-
def
addString(b: StringBuilder): StringBuilder
-
def
addString(b: StringBuilder, sep: String): StringBuilder
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
-
def
aggregate[B](z: ⇒ B)(seqop: (B, Element) ⇒ B, combop: (B, B) ⇒ B): B
-
def
andThen[C](k: (Element) ⇒ C): PartialFunction[Int, C]
-
def
apply(x: Int): Element
-
def
applyOrElse[A1 <: Int, B1 >: Element](x: A1, default: (A1) ⇒ B1): B1
-
final
def
asInstanceOf[T0]: T0
-
def
canEqual(that: Any): Boolean
-
def
clone(): AnyRef
-
def
collect[B, That](pf: PartialFunction[Element, B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
collectFirst[B](pf: PartialFunction[Element, B]): Option[B]
-
def
combinations(n: Int): Iterator[Seq[Element]]
-
def
companion: GenericCompanion[Seq]
-
def
compose[A](g: (A) ⇒ Int): (A) ⇒ Element
-
def
contains[A1 >: Element](elem: A1): Boolean
-
def
containsSlice[B](that: GenSeq[B]): Boolean
-
def
copyToArray[B >: Element](xs: Array[B], start: Int, len: Int): Unit
-
def
copyToArray[B >: Element](xs: Array[B]): Unit
-
def
copyToArray[B >: Element](xs: Array[B], start: Int): Unit
-
def
copyToBuffer[B >: Element](dest: Buffer[B]): Unit
-
def
corresponds[B](that: GenSeq[B])(p: (Element, B) ⇒ Boolean): Boolean
-
def
count(p: (Element) ⇒ Boolean): Int
-
def
diff[B >: Element](that: GenSeq[B]): Seq[Element]
-
def
distinct: Seq[Element]
-
def
drop(n: Int): Seq[Element]
-
def
dropRight(n: Int): Seq[Element]
-
def
dropWhile(p: (Element) ⇒ Boolean): Seq[Element]
-
def
endsWith[B](that: GenSeq[B]): Boolean
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(that: Any): Boolean
-
def
exists(p: (Element) ⇒ Boolean): Boolean
-
def
filter(p: (Element) ⇒ Boolean): Seq[Element]
-
def
filterNot(p: (Element) ⇒ Boolean): Seq[Element]
-
def
finalize(): Unit
-
def
find(p: (Element) ⇒ Boolean): Option[Element]
-
def
flatMap[B, That](f: (Element) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
flatten[B](implicit asTraversable: (Element) ⇒ GenTraversableOnce[B]): Seq[B]
-
def
fold[A1 >: Element](z: A1)(op: (A1, A1) ⇒ A1): A1
-
def
foldLeft[B](z: B)(op: (B, Element) ⇒ B): B
-
def
foldRight[B](z: B)(op: (Element, B) ⇒ B): B
-
def
forall(p: (Element) ⇒ Boolean): Boolean
-
def
foreach[U](f: (Element) ⇒ U): Unit
-
def
genericBuilder[B]: Builder[B, Seq[B]]
-
final
def
getClass(): Class[_]
-
def
groupBy[K](f: (Element) ⇒ K): Map[K, Seq[Element]]
-
def
grouped(size: Int): Iterator[Seq[Element]]
-
def
hasDefiniteSize: Boolean
-
def
hashCode(): Int
-
-
def
headOption: Option[Element]
-
def
indexOf[B >: Element](elem: B, from: Int): Int
-
def
indexOf[B >: Element](elem: B): Int
-
def
indexOfSlice[B >: Element](that: GenSeq[B], from: Int): Int
-
def
indexOfSlice[B >: Element](that: GenSeq[B]): Int
-
def
indexWhere(p: (Element) ⇒ Boolean, from: Int): Int
-
def
indexWhere(p: (Element) ⇒ Boolean): Int
-
def
indices: scala.collection.immutable.Range
-
def
init: Seq[Element]
-
def
inits: Iterator[Seq[Element]]
-
def
intersect[B >: Element](that: GenSeq[B]): Seq[Element]
-
def
isDefinedAt(idx: Int): Boolean
-
def
isEmpty: Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
isTraversableAgain: Boolean
-
def
iterator: Iterator[Element]
-
-
def
lastIndexOf[B >: Element](elem: B, end: Int): Int
-
def
lastIndexOf[B >: Element](elem: B): Int
-
def
lastIndexOfSlice[B >: Element](that: GenSeq[B], end: Int): Int
-
def
lastIndexOfSlice[B >: Element](that: GenSeq[B]): Int
-
def
lastIndexWhere(p: (Element) ⇒ Boolean, end: Int): Int
-
def
lastIndexWhere(p: (Element) ⇒ Boolean): Int
-
def
lastOption: Option[Element]
-
def
length: Int
-
def
lengthCompare(len: Int): Int
-
def
lift: (Int) ⇒ Option[Element]
-
def
map[B, That](f: (Element) ⇒ B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
max[B >: Element](implicit cmp: Ordering[B]): Element
-
def
maxBy[B](f: (Element) ⇒ B)(implicit cmp: Ordering[B]): Element
-
def
min[B >: Element](implicit cmp: Ordering[B]): Element
-
def
minBy[B](f: (Element) ⇒ B)(implicit cmp: Ordering[B]): Element
-
def
mkString: String
-
def
mkString(sep: String): String
-
def
mkString(start: String, sep: String, end: String): String
-
final
def
ne(arg0: AnyRef): Boolean
-
def
newBuilder: Builder[Element, Seq[Element]]
-
def
nonEmpty: Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
orElse[A1 <: Int, B1 >: Element](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
-
def
padTo[B >: Element, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
par: ParSeq[Element]
-
def
parCombiner: Combiner[Element, ParSeq[Element]]
-
def
partition(p: (Element) ⇒ Boolean): (Seq[Element], Seq[Element])
-
def
patch[B >: Element, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
permutations: Iterator[Seq[Element]]
-
def
prefixLength(p: (Element) ⇒ Boolean): Int
-
def
product[B >: Element](implicit num: Numeric[B]): B
-
def
reduce[A1 >: Element](op: (A1, A1) ⇒ A1): A1
-
def
reduceLeft[B >: Element](op: (B, Element) ⇒ B): B
-
def
reduceLeftOption[B >: Element](op: (B, Element) ⇒ B): Option[B]
-
def
reduceOption[A1 >: Element](op: (A1, A1) ⇒ A1): Option[A1]
-
def
reduceRight[B >: Element](op: (Element, B) ⇒ B): B
-
def
reduceRightOption[B >: Element](op: (Element, B) ⇒ B): Option[B]
-
def
repr: Seq[Element]
-
def
reverse: Seq[Element]
-
def
reverseIterator: Iterator[Element]
-
def
reverseMap[B, That](f: (Element) ⇒ B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
reversed: List[Element]
-
def
runWith[U](action: (Element) ⇒ U): (Int) ⇒ Boolean
-
def
sameElements[B >: Element](that: GenIterable[B]): Boolean
-
def
scan[B >: Element, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Seq[Element], B, That]): That
-
def
scanLeft[B, That](z: B)(op: (B, Element) ⇒ B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
scanRight[B, That](z: B)(op: (Element, B) ⇒ B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
segmentLength(p: (Element) ⇒ Boolean, from: Int): Int
-
-
def
size: Int
-
def
slice(from: Int, until: Int): Seq[Element]
-
def
sliding(size: Int, step: Int): Iterator[Seq[Element]]
-
def
sliding(size: Int): Iterator[Seq[Element]]
-
def
sortBy[B](f: (Element) ⇒ B)(implicit ord: Ordering[B]): Seq[Element]
-
-
def
sorted[B >: Element](implicit ord: Ordering[B]): Seq[Element]
-
-
def
splitAt(n: Int): (Seq[Element], Seq[Element])
-
def
startsWith[B](that: GenSeq[B], offset: Int): Boolean
-
def
startsWith[B](that: GenSeq[B]): Boolean
-
def
stringPrefix: String
-
def
sum[B >: Element](implicit num: Numeric[B]): B
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
tail: Seq[Element]
-
def
tails: Iterator[Seq[Element]]
-
def
take(n: Int): Seq[Element]
-
def
takeRight(n: Int): Seq[Element]
-
def
takeWhile(p: (Element) ⇒ Boolean): Seq[Element]
-
def
thisCollection: Seq[Element]
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Element, Col[Element]]): Col[Element]
-
def
toArray[B >: Element](implicit arg0: ClassTag[B]): Array[B]
-
def
toBuffer[B >: Element]: Buffer[B]
-
def
toCollection(repr: Seq[Element]): Seq[Element]
-
def
toIndexedSeq: IndexedSeq[Element]
-
def
toIterable: Iterable[Element]
-
def
toIterator: Iterator[Element]
-
def
toList: List[Element]
-
def
toMap[T, U](implicit ev: <:<[Element, (T, U)]): Map[T, U]
-
def
toSeq: Seq[Element]
-
def
toSet[B >: Element]: Set[B]
-
def
toStream: Stream[Element]
-
def
toString(): String
-
def
toTraversable: Traversable[Element]
-
def
toVector: Vector[Element]
-
def
transpose[B](implicit asTraversable: (Element) ⇒ GenTraversableOnce[B]): Seq[Seq[B]]
-
def
union[B >: Element, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
unzip[A1, A2](implicit asPair: (Element) ⇒ (A1, A2)): (Seq[A1], Seq[A2])
-
def
unzip3[A1, A2, A3](implicit asTriple: (Element) ⇒ (A1, A2, A3)): (Seq[A1], Seq[A2], Seq[A3])
-
def
updated[B >: Element, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Seq[Element], B, That]): That
-
def
view(from: Int, until: Int): SeqView[Element, Seq[Element]]
-
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
withFilter(p: (Element) ⇒ Boolean): FilterMonadic[Element, Seq[Element]]
-
def
zip[A1 >: Element, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Seq[Element], (A1, B), That]): That
-
def
zipAll[B, A1 >: Element, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Seq[Element], (A1, B), That]): That
-
def
zipWithIndex[A1 >: Element, That](implicit bf: CanBuildFrom[Seq[Element], (A1, Int), That]): That
Inherited from Equals
Inherited from GenIterable[Element]
Inherited from Traversable[Element]
Inherited from GenTraversable[Element]
Inherited from GenericTraversableTemplate[Element, Seq]
Inherited from TraversableOnce[Element]
Inherited from GenTraversableOnce[Element]
Inherited from HasNewBuilder[Element, Seq[org.scalajs.dom.Element] @scala.annotation.unchecked.uncheckedVariance]
Inherited from PartialFunction[Int, Element]
Inherited from AnyRef
Inherited from Any