Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 87d45b5

Browse files
Turn LazyZipOps into a value class
1 parent 83b2836 commit 87d45b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

collections/src/main/scala/strawman/collection/LazyZipOps.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package strawman.collection
22

3-
import scala.{Boolean, StringContext, Unit}
3+
import scala.{AnyVal, Boolean, StringContext, Unit}
44
import scala.language.implicitConversions
55

6-
final class LazyZipOps[A, C1 <: Iterable[A]] private[collection](`this`: C1) {
6+
final class LazyZipOps[A, C1 <: Iterable[A]] private[collection](val `this`: C1) extends AnyVal {
77

88
/** Analogous to `zip` except that the elements in each collection are not consumed until a strict operation is
99
* invoked on the returned `LazyZip2` decorator.

0 commit comments

Comments
 (0)