vote up 2 vote down star
2

Are there any Platform agnostic (not CLI) movements to get LINQ going for C++ in some fashion?

I mean a great part of server frameworks around the world run on flavors of UNIX and having access to LINQ for C++ on UNIX would probably make lots of people happy!

flag

4 Answers

vote up 4 vote down check

I know C# and C++ aren't the same, but there is the Mono project which (as of Version 2.0) supports C# 3.0 including LINQ.

http://www.mono-project.com/Main_Page

link|flag
Not C++, but it's nice to know MONO supports LINQ :) – Robert Gould Oct 24 '08 at 1:57
I thought so, the Mono project has really grown in the last year or so. I just thought that if you were mainly interested in doing LINQ on some flavor of UNIX, this would be the route to go instead of waiting for something that might never come. – Anthony Potts Oct 24 '08 at 2:00
vote up 2 vote down

I don't think C++ has the compiler sugar to handle things such as lamda expressions, so no, thats not going to happen.

link|flag
C++ 0X has lambda, so it should be theoretically possible, but yes it's not an easy task. – Robert Gould Oct 27 '08 at 2:55
Now that you mentioned that and got me thinking, another option I can imagine is to go the QT route, and use a pre-compiler to add the syntactic sugar to C++, that might be a good alternative – Robert Gould Oct 27 '08 at 2:58
1  
The Boost.Phoenix Library also adds Lambdas to C++ without any pre-compiler tricks. See tinyurl.com/d4y9se [boost.org] Of course, with C++0x alot of this stuff becomes easier! A nice article how to do LINQ with c++0x tinyurl.com/d9zlsc [blogspot.com] – jk Apr 12 at 10:56
vote up 0 vote down

Do you mean the monad (IEnumerable<> and the set of extension methods on it)? Do you mean the language aspect of it? Do you mean LINQ-to-SQL?

link|flag
Well the LINQ-SQL part is the part I'd really want, but that depends on LINQ's language and monads. – Robert Gould Oct 27 '08 at 2:57
vote up 0 vote down

But now with boost there is the syntactic sugar needed...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.