|
|
|
|
|
by jwdunne
5100 days ago
|
|
Oh wow, thanks! I should have also noted I have no experience with the language in the examples so please ignore any ignorance there (probably should have read up on it). Interesting! All well noted and I'll look into this more. I'm vaguely aware of fold's power and can definitely see how filter, map and the likes would be implemented in terms of it but I would be really interested in the infodump! I'm just wondering, ignoring laziness and typing (or any language-specifics), if foldl could be written similar to (2)? Obviously it wouldn't be very good. I've written an example in Racket of what I have in mind: (define (foldl fn initial lst)
(if (null? lst)
initial
(fn (car lst) (foldl fn initial (cdr lst)))))
(define (fac n)
(if (= n 0)
1
(* n (fac (- n 1)))))
(= (fac 3)
(foldl * 1 '(1 2 3)))
Thanks again for the info, really appreciated. :) |
|
What would actually be foldl is this:
Now if you expand this (dropping the tail recursion): And even though you think that such a tiny thing can't be a good implementations, it actually is super efficient. The tail recursion is automatically optimized for you (and you can assume that for any functional language - it's a very crucial optimization for this style of code, after all). That's what the core of it will be in an actual implementation, though with added error handling, type checking and so on.P.S. unlike haskell, in Racket you don't really need to fold the basic operators, they take variable arguments, so you can just:
in order to get it to run on a list.