Last active
November 27, 2018 21:16
-
-
Save SethTisue/8977033 to your computer and use it in GitHub Desktop.
Example of `lazy val` inside `implicit class`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// `lazy val` inside `implicit class` | |
implicit class RichStream[T](s: Stream[T]) { | |
lazy val circular: Stream[T] = | |
s #::: circular | |
} | |
// in order to make this work with `extends AnyVal`, you have to make the | |
// lazy val local, as follows: | |
implicit class RichStream[T](private val s: Stream[T]) extends AnyVal { | |
def circular: Stream[T] = { | |
lazy val result: Stream[T] = s #::: result | |
result | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment