Re: [Haskell-cafe] Recursive timezone-loading function

2012-11-29 Thread Yitzchak Gale
Hi David, David Thomas wrote: https://github.com/dlthomas/tzcache A small bit of code, but seems likely to be useful enough that I figured I should share. Thanks for sharing this! 1) Does this already exist somewhere I missed? I haven't seen it anywhere. 2) It seems silly to make

Re: [Haskell-cafe] Recursive timezone-loading function

2012-11-29 Thread Roman Cheplyaka
* Yitzchak Gale g...@sefer.org [2012-11-30 00:28:45+0200] I think the proper abstraction would be a more general fold or traversal over a directory structure. Some languages have something like that (e.g., os.walk in Python). Check out

[Haskell-cafe] Recursive timezone-loading function

2012-11-27 Thread David Thomas
https://github.com/dlthomas/tzcache A small bit of code, but seems likely to be useful enough that I figured I should share. I've a few notes/questions: 1) Does this already exist somewhere I missed? 2) It seems silly to make this its own library - any suggestions where it could be added? 3)