Printer Friendly
Dictionary, Encyclopedia and Thesaurus - The Free Dictionary
1,728,769,758 visitors served.
forum mailing list For webmasters
?
New: Language forums
Dictionary/
thesaurus
Medical
dictionary
Legal
dictionary
Financial
dictionary
Acronyms
 
Idioms
Encyclopedia
Wikipedia
encyclopedia
?

unfold/fold

    0.02 sec.
unfold/fold - A program transformation where a recursive call to a function is unfolded to an instance of the function's body and then later an instance of the function's body is replaced by a call. E.g.

sumdouble l = sum (double l)

double l = case l of [] -> [] x:xs -> 2*x + double xs

==> (unfold double)

sumdouble l = sum (case l of [] -> [] x:xs -> 2*x : double xs)

==> (distribute over case)

sumdouble l = case l of [] -> sum [] x:xs -> sum (2*x : double xs)

==> (unfold sum)

sumdouble l = case l of [] -> 0 x:xs -> 2*x + sum (double xs)

==> (fold sumdouble)

sumdouble l = case l of [] -> 0 x:xs -> 2*x + sumdouble xs


How to thank TFD for its existence? Tell a friend about us, add a link to this page, add the site to iGoogle, or visit webmaster's page for free fun content.
?Page tools
Printer friendly
Cite / link
Email
Feedback
? Mentioned in
 
Encyclopedia browser? ? Full browser
 
 
Encyclopedia
?

Disclaimer | Privacy policy | Feedback | Copyright © 2009 Farlex, Inc.
All content on this website, including dictionary, thesaurus, literature, geography, and other reference data is for informational purposes only. This information should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. Terms of Use.