vote up 4 vote down star
1

Hi all,

I come across the word 'thunk' at a lot of places in code and documentation related to Scheme, and similar territories. I am guessing that it is a generic name for a procedure, which has a single formal argument. Is that correct? If yes, is there more to it? If no, please?

For eg. in SRFI 18, in the 'Procedures' section.

flag

72% accept rate

6 Answers

vote up 6 vote down check

It is really simple. When you have some computation, like adding 3 to 5, in your program, then creating a thunk of it means not to calculate it directly, but instead create a function with zero arguments that will calculate it when the actual value is needed.

(let ((foo (+ 3 5))) ; the calculation is performed directly, foo is 8
  ;; some other things
  (display foo)) ; foo is evaluated to 8 and printed

(let ((foo (lambda () (+ 3 5)))) ; the calculation is delayed, foo is a
                                 ; function that will perform it when needed
  ;; some other things
  (display (foo))) ; foo is evaluated as a function, returns 8 which is printed

In the second case, foo would be called a thunk.

Lazy languages blur the line between binding a variable to a value and creating a function to return that value, so that writing something like the first form above is actually treated like the second, under the hood.

link|flag
Scheme is not a lazy language, right? (in 'Overview of Scheme' in r6rs). So, iff I create a think, like above, it will create a lazy evaluation scenario? – Amit May 29 at 15:09
^ s/think/thunk/ (my bad) – Amit May 29 at 15:09
Please look at the link kotlinski (stackoverflow.com/questions/925365/…) provided for how Scheme implements a lazy evaluation scheme. – Svante May 29 at 15:59
Yes. I did. However, my query here was: Will creating a lambda as above delay the evaluation in a non-Lazy language like Scheme? – Amit May 30 at 11:17
Yes, of course. Why shouldn't it? Lazy just means that you don't have to do this explicitly, like the above. – Svante May 30 at 11:48
show 4 more comments
vote up 5 vote down

Wikipedia has the following answer:

In functional programming, "thunk" is another name for a nullary function — a function that takes no arguments. Thunks are frequently used in strict languages as a means of simulating lazy evaluation; the thunk itself delays the computation of a function's argument, and the function forces the thunk to obtain the actual value. In this context, a thunk is often called a suspension or (in Scheme) a promise.

Adding a lazy evaluation example in Scheme. Here, promise is another word for thunk.

link|flag
Thank You. I am looking for something better. Wikipedia doesn't explain things and concepts I really want to know. – Amit May 29 at 10:37
@Amit -- I assume you commented before the question was updated with the quote. This is the exact answer to your question. – tvanfosson May 29 at 10:41
@tvanfosson probablty it was edited after the original post. @kotlinski will it be possible to demonstrate it somehow? – Amit May 29 at 10:47
OK, added an example... This is also explained well in Paradigms of Artificial Intelligence Programming by Peter Norvig (examine delay/force examples). – kotlinski May 29 at 11:11
'force' and 'delay' seems to have been removed from the R6RS. – Amit May 30 at 11:12
vote up 1 vote down

Check haskell wiki for a good explanation. Also check these lecture notes. Also EoPL provides some explanation.

link|flag
Thanks for the links. They look good. I shall read them. – Amit May 29 at 10:57
The EoPL link is especially a good one. Thanks! – Amit May 29 at 15:53
vote up 1 vote down

A "thunk" is a procedure object with no formal arguments, e.g. from your SRFI link:

(lambda () (write '(b1))

The b1 variable is bound in the enclosing block, and this gives us a clue to the etymology of the word "thunk," which relies on a joke about poor English grammar.

A zero-argument function has no way to change its behavior based on parameters it is called with, since it has no parameters. Therefore the entire operation of the function is set -- it is just waiting to be executed. No more "thought" is required on the part of the computer, all of the "thinking" has been done -- the action is completely "thunk" through.

That's all a "thunk" is in this SRFI's context -- a procedure with no arguments.

link|flag
vote up 1 vote down

Check the Hacker's Dictionary under T.

link|flag
vote up 0 vote down

Read this in case you want to read Thunk in the context of C++.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.