We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5599069 + 44a500f commit 7007a4fCopy full SHA for 7007a4f
_overviews/core/custom-collections.md
@@ -596,11 +596,11 @@ this is why we always get a `Vector` as a result.
596
// symbolic alias for `concat`
597
@inline final def ++ (suffix: IterableOnce[Base]): RNA2 = concat(suffix)
598
def appended(base: Base): RNA2 =
599
- fromSpecific(new View.Append(this, base))
+ fromSpecific(new View.Appended(this, base))
600
def appendedAll(suffix: IterableOnce[Base]): RNA2 =
601
concat(suffix)
602
def prepended(base: Base): RNA2 =
603
- fromSpecific(new View.Prepend(base, this))
+ fromSpecific(new View.Prepended(base, this))
604
def prependedAll(prefix: IterableOnce[Base]): RNA2 =
605
fromSpecific(prefix.iterator ++ iterator)
606
def map(f: Base => Base): RNA2 =
0 commit comments