Returns a new instance of Lazy Lazy<T>, which calls Provider#get() at most once on the Provider held by this object.
()
| 38 | * most once on the {@link Provider} held by this object. |
| 39 | */ |
| 40 | @Override |
| 41 | public Lazy<T> get() { |
| 42 | return DoubleCheck.lazy(provider); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Creates a new {@link Provider Provider<Lazy<T>>} that decorates the given |