case class One[V, A](v: V, a1: A)(implicit r: Reducer[A, V]) extends Finger[V, A] with Product with Serializable
- Source
- FingerTree.scala
- Alphabetic
- By Inheritance
- One
- Serializable
- Serializable
- Product
- Equals
- Finger
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+:(a: A): Two[V, A]
Append the given element to the right
-
def
:+(a: A): Two[V, A]
Prepends the given element to the left
-
def
:-|(a: A): One[V, A]
Replaces the last element of this finger with
a
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val a1: A
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def foldMap[B](f: (A) ⇒ B)(implicit m: Semigroup[B]): B
-
def
foreach(f: (A) ⇒ Unit): Unit
Apply the given side effect to each element.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
iterator: Iterator[A]
An iterator that visits each element.
- def lhead: A
- def ltail: Nothing
- def map[B, V2](f: (A) ⇒ B)(implicit r: Reducer[B, V2]): One[V2, B]
- val measure: v.type
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
reverseIterator: Iterator[A]
An iterator that visits each element in reverse order.
- def rhead: A
- def rtail: Nothing
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toList: List[A]
- Definition Classes
- Finger
- def toTree: FingerTree[V, A]
- val v: V
-
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( ... ) @native()
-
def
|-:(a: A): One[V, A]
Replaces the first element of this finger with
a