From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_20,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: fac41,ea30c4e9c3d00b X-Google-Attributes: gidfac41,public X-Google-Thread: 103376,ea30c4e9c3d00b X-Google-Attributes: gid103376,public From: Rainer Joswig Subject: Re: Ultimate Language feature list Date: 1998/05/14 Message-ID: #1/1 X-Deja-AN: 353020662 References: <6jcjqq$jl4$1@nnrp1.dejanews.com> Organization: Lavielle EDV Systemberatung GmbH & Co Newsgroups: comp.lang.ada,comp.lang.eiffel Date: 1998-05-14T00:00:00+00:00 List-Id: adam@irvine.com writes: > Well, as long as we're talking about what language features we want, > here's one I've always wanted: The ability to deal with sequences of > objects. Well, read Abelson and Sussman's classic book "Structure and Interpretation of Computer Programs". What you are looking for is called "streams". Common Lisp has a library called "series" which does these things and is able to compile it to efficient code. For a description of "Series" see "Common Lisp the Language, 2nd Edition" by Guy L. Steele Jr.: http://www.lavielle.com/~joswig/cltl2/clm/node347.html#SECTION003400000000000000000 This stuff is a decade old now. Another thing worth looking for is the STL for C++.