Is it possible to use the LINQ types and extension methods in IronPython?
If so how? And also is there often more pythonic to do the same thing?
|
Is it possible to use the LINQ types and extension methods in IronPython? If so how? And also is there often more pythonic to do the same thing? |
||||
|
|
IronPython 2.7 finally bridges this gap with the
which brings it into line with IronRuby 1.1's |
||||
|
|
|
Some of the things you'd do with LINQ can be done with list comprehensions:
Or you can use map, reduce, and filter:
But list comprehensions are much more "Pythonic" than using the functional programming constructs. For reducing things, consider using "".join or sum. And you can check the truth value of entire iterables by using any and all Just remember these translations:
And you'll be well on your way! |
|||||
|
|
I described a C# wrapper class around the LINQ extension methods to achieve a syntax similar to C#'s 'chained extension method' syntax in IronPython. The idea is to have a kind of decorator class around
This allows for a syntax similar to this:
Disclaimer: this is something I tried as a learning excercise, I haven't used this in a real-world project. |
|||
|
|
|
In IronPython 2.7.1 you have clr.ImportExtensions for this use case.
A little background: IronPython 2.7 initially introduced this feature, but there was an issue which stopped it from being really usable. |
|||
|
|