Search results

Jump to navigation Jump to search
View (previous 20 | ) (20 | 50 | 100 | 250 | 500)
  • their code more strict. The real benefit of laziness is in making the right things efficient enough. Lazy evaluation allows us to write more simple, elegant...
    27 KB (3,889 words) - 18:25, 21 November 2023
  • that can be used to support laziness and improve performance of list calculations. We've already seen ranges. Ranges are lazy by default, which means all...
    8 KB (1,265 words) - 06:31, 16 April 2020
  • ← Back to Laziness Because show x needs to evaluate x to convert it to a String. g is stricter: it must walk through the whole list to discover its length...
    2 KB (186 words) - 11:59, 5 October 2019
  • TODO: Pour lazy evaluation explanation from Laziness into this mold. TODO: better section names. TODO: ponder the graphical representation of graphs....
    24 KB (3,005 words) - 15:27, 8 March 2024
  • otherwise the actual data is returned. It is by the magic of thunks that laziness can be implemented. Generally, in the implementation the thunk is really...
    3 KB (483 words) - 23:45, 4 January 2015
  • algorithms. This and many other neat techniques with lazy evaluation will be detailed in the chapter Laziness. It's neither feasible nor necessary to perform...
    13 KB (1,904 words) - 20:47, 7 May 2018
  • A function which lazily produces Fibonacci numbers: (def fib-seq ((fn rfib [a b] (lazy-seq (cons a (rfib b (+ a b))))) 0 1)) user> (take 20 fib-seq) (0...
    5 KB (435 words) - 06:00, 16 April 2020
  • Many functional languages feature delayed (or lazy) evaluation of function arguments, Unlike applicative order evaluation (used by C and Java), where function...
    2 KB (227 words) - 19:05, 6 June 2024
  • as C: exploiting strictness, laziness and recursion. dons: Write Haskell as fast as C: exploiting strictness, laziness and recursion. haskell-cafe: another...
    5 KB (664 words) - 15:35, 22 October 2019
  • acting without thinking, and that too is poor judgement. Poor judgement and laziness Rest and relaxation is important to maintain health and to occasionally...
    7 KB (1,095 words) - 17:49, 7 February 2018
  • lists have a pretty high power-to-weight ratio in a lazy, purely functional setting. Laziness makes it possible to use lists as streams where we sequentially...
    12 KB (1,747 words) - 20:47, 26 September 2021
  • addition, in Haskell, space leaks are a frequent source of problems with laziness. This means that learning to use profiling is important. Currently, we...
    663 bytes (96 words) - 20:02, 29 August 2014
  • R interfaces to Weka lazy learners. IBk(formula, data, subset, na.action, control = Weka_control(), options = NULL) LBR(formula, data, subset, na.action...
    2 KB (292 words) - 18:07, 6 November 2010
  • ' >> object='the lazy dog' object = 'the lazy dog' >> phrase=[subject,verb,object] phrase = 'The quick brown fox jumps over the lazy dog' To let user...
    15 KB (2,210 words) - 16:16, 13 August 2022
  • later: > let x = lazy(printfn "I'm lazy"; 5 + 5);; val x : Lazy<int> = <unevaluated> > x.Force();; (* Should print "I'm lazy" *) I'm lazy val it : int =...
    8 KB (972 words) - 12:03, 7 September 2022
  • Mi Tang, designed to address yang qiao vessel deficiency, manifested as laziness, somnolence, inability of the limbs to flex, edema, pale tongue with thin...
    573 bytes (57 words) - 07:09, 29 October 2012
  • Reduction. The term Laziness comes from the fact that the prevalent implementation technique for non-strict languages is called lazy evaluation The term...
    56 KB (7,813 words) - 02:50, 2 July 2024
  • Nada. See also: lazy|#lazy|lazy Default has two radically different functions: set a default static value. set a dynamic lazy (lazy=>1) default value...
    22 KB (2,815 words) - 12:49, 16 April 2024
  • ones that get the process of programming moving, the passionate virtues: laziness never write code when you can 'steal' it, never write anything twice, impatience...
    10 KB (1,747 words) - 07:53, 14 August 2022
  • using the same arguments will return the same result every time. Haskell is lazy. Evaluations are performed only when needed. Haskell provides a modern type...
    7 KB (547 words) - 03:45, 6 April 2024
View (previous 20 | ) (20 | 50 | 100 | 250 | 500)