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

Commit

Permalink
Turn LazyZipOps into a value class
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelocenerine committed Oct 27, 2017
1 parent 83b2836 commit 87d45b5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package strawman.collection

import scala.{Boolean, StringContext, Unit}
import scala.{AnyVal, Boolean, StringContext, Unit}
import scala.language.implicitConversions

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

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

0 comments on commit 87d45b5

Please sign in to comment.