be evaluated more than once.
I'm working on a homework assignment where we are asked to implement an evaluation strategy called "call by name" in …
scala scheme lazy-evaluation evaluationI have a class containing something like the following: public static class Config { private static Lazy<ConfigSource> _cfgSrc = …
c# .net-4.0 lazy-evaluationOne handy feature of Scala is lazy val, where the evaluation of a val is delayed until it's necessary (at …
performance scala lazy-evaluationHow do I disable lazy loading in Hibernate? I am using persistence annotations, not an hbm xml file. I am …
hibernate persistence lazy-evaluation hibernate-annotationsI need something similar to String.format(...) method, but with lazy evaluation. This lazyFormat method should return some object whose …
java logging lazy-evaluationI discovered the "time" command in unix today and thought I'd use it to check the difference in runtimes between …
haskell optimization lazy-evaluation tail-recursion tail-call-optimizationpublic class myClass { public myClass(String InstanceName) { Name = InstanceName; } public String Name { get; set; } } // Now using myClass lazily I have: …
c# parameters constructor lazy-evaluationAm I right understanding that def is evaluated every time it gets accessed lazy val is evaluated once it gets …
scala properties lazy-evaluationI have a Django form which I'm validating in a normal Django view. I'm trying to figure out how to …
django json unicode django-forms lazy-evaluationIs it always more performant to use withFilter instead of filter, when afterwards applying functions like map, flatmap etc.? Why …
scala lazy-evaluation scala-collections for-comprehension