List Comprehension Library for Scheme? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T00:55:19Z http://stackoverflow.com/feeds/question/131023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131023/list-comprehension-library-for-scheme 7 List Comprehension Library for Scheme? Kyle Burton 2008-09-25T01:38:06Z 2008-09-25T13:27:42Z <p>I know there is a list-comprehension library for common lisp (<a href="http://superadditive.com/projects/incf-cl/" rel="nofollow">incf-cl</a>), I know they're supported natively in various other functional (and some non-functional) languages (F#, Erlang, Haskell and C#) - is there a list comprehension library for Scheme?</p> <p>incf-cl is implemented in CL as a library using macros - shouldn't it be possible to use the same techniques to create one for Scheme?</p> http://stackoverflow.com/questions/131023/list-comprehension-library-for-scheme/131246#131246 5 Answer by Nathan Sanders for List Comprehension Library for Scheme? Nathan Sanders 2008-09-25T03:00:47Z 2008-09-25T03:00:47Z <ul> <li><a href="http://docs.plt-scheme.org/swindle/index.html" rel="nofollow">Swindle</a> is primarily a CLOS emulator library, but it has list comprehensions too. I've used them, they're convenient, but the version I used was buggy and incomplete. (I just needed generic functions.)</li> <li>However, you probably want <a href="http://srfi.schemers.org/srfi-42/srfi-42.html" rel="nofollow">SRFI-42</a>. I haven't used it, but it HAS to have fewer bugs than the Swindle list comprehensions.</li> </ul> <p>I don't know which Scheme you use. <a href="http://www.plt-scheme.org" rel="nofollow">PLT Scheme</a> bundles Swindle and SRFI-42. Both are supposed to be cross-Scheme compatible, though.</p> <p>If you use PLT Scheme, here is SRFI-42's <a href="http://docs.plt-scheme.org/srfi/srfi-42.html" rel="nofollow">man page</a>. You say <code>(require srfi/42)</code> to get it.</p> http://stackoverflow.com/questions/131023/list-comprehension-library-for-scheme/133315#133315 0 Answer by leppie for List Comprehension Library for Scheme? leppie 2008-09-25T13:27:42Z 2008-09-25T13:27:42Z <p>You can use <a href="https://ironscheme.svn.codeplex.com/svn/IronScheme/IronSchemeConsole/ironscheme/linq.ss" rel="nofollow">LINQ for R6RS Scheme</a> (although it could be made to run under 'older' implementations).</p>