play.api.libs.json.LazyHelper.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) from 2022 The Play Framework Contributors , 2011-2021 Lightbend Inc.
*/
package play.api.libs.json.util
// Deprecated?
trait LazyHelper[M[_], T] {
def lazyStuff: M[T]
}
object LazyHelper {
def apply[M[_], T](stuff: M[T]) = new LazyHelper[M, T] {
override lazy val lazyStuff = stuff
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy