<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Check lambda support in IntelliJ IDEA 12 EAP build 122.202</title>
	<atom:link href="http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/</link>
	<description>tips &#38; tricks, news, how-to's</description>
	<pubDate>Sat, 25 May 2013 17:12:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Anna Kozlova</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-495974</link>
		<dc:creator>Anna Kozlova</dc:creator>
		<pubDate>Tue, 19 Mar 2013 16:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-495974</guid>
		<description>To be sure you need to download java from http://jdk8.java.net/lambda/.</description>
		<content:encoded><![CDATA[<p>To be sure you need to download java from <a href="http://jdk8.java.net/lambda/" rel="nofollow">http://jdk8.java.net/lambda/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Turanski</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-495949</link>
		<dc:creator>David Turanski</dc:creator>
		<pubDate>Tue, 19 Mar 2013 14:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-495949</guid>
		<description>Re. Collections support. Basic lambda examples are working for me. When I tried to do something simple like List.forEach {} it doesn't compile. It appears it's not part of the latest jdk 8 build yet, but I may be missing something. Does this work today?</description>
		<content:encoded><![CDATA[<p>Re. Collections support. Basic lambda examples are working for me. When I tried to do something simple like List.forEach {} it doesn&#8217;t compile. It appears it&#8217;s not part of the latest jdk 8 build yet, but I may be missing something. Does this work today?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anna Kozlova</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-367432</link>
		<dc:creator>Anna Kozlova</dc:creator>
		<pubDate>Wed, 12 Dec 2012 10:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-367432</guid>
		<description>Davide, what support do you expect? Thanks</description>
		<content:encoded><![CDATA[<p>Davide, what support do you expect? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davide</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-366385</link>
		<dc:creator>Davide</dc:creator>
		<pubDate>Tue, 11 Dec 2012 15:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-366385</guid>
		<description>is there already also support for map, filter and reduce operations on collections? Looks great anyway! Great job.</description>
		<content:encoded><![CDATA[<p>is there already also support for map, filter and reduce operations on collections? Looks great anyway! Great job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anna Kozlova</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-290077</link>
		<dc:creator>Anna Kozlova</dc:creator>
		<pubDate>Fri, 21 Sep 2012 08:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-290077</guid>
		<description>Works here. Could you please check that your module has 1.8 language level. Otherwise IDEA would treat lambdas as unsupported feature, hence no intention would be suggested.
Thanks</description>
		<content:encoded><![CDATA[<p>Works here. Could you please check that your module has 1.8 language level. Otherwise IDEA would treat lambdas as unsupported feature, hence no intention would be suggested.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnPaul</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-289529</link>
		<dc:creator>JohnPaul</dc:creator>
		<pubDate>Wed, 19 Sep 2012 08:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-289529</guid>
		<description>public class MyClassTest extends TestCase {
    public void testFoo() {
        Comparable integerComparable = new Comparable() {
            @Override
            public int compareTo(Integer o) {
                return 0;
            }
        };
    }
}

does not offer an intention.

$ java -version
openjdk version "1.8.0-ea"
OpenJDK Runtime Environment (build 1.8.0-ea-lambda-nightly-h1171-20120911-b56-b00)
OpenJDK Client VM (build 24.0-b21, mixed mode)

Idea @IU-122.337

Any ideas?</description>
		<content:encoded><![CDATA[<p>public class MyClassTest extends TestCase {<br />
    public void testFoo() {<br />
        Comparable integerComparable = new Comparable() {<br />
            @Override<br />
            public int compareTo(Integer o) {<br />
                return 0;<br />
            }<br />
        };<br />
    }<br />
}</p>
<p>does not offer an intention.</p>
<p>$ java -version<br />
openjdk version &#8220;1.8.0-ea&#8221;<br />
OpenJDK Runtime Environment (build 1.8.0-ea-lambda-nightly-h1171-20120911-b56-b00)<br />
OpenJDK Client VM (build 24.0-b21, mixed mode)</p>
<p>Idea @IU-122.337</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anna Kozlova</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-283430</link>
		<dc:creator>Anna Kozlova</dc:creator>
		<pubDate>Thu, 30 Aug 2012 17:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-283430</guid>
		<description>The font is default (Tahoma 11)</description>
		<content:encoded><![CDATA[<p>The font is default (Tahoma 11)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anna Kozlova</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-283033</link>
		<dc:creator>Anna Kozlova</dc:creator>
		<pubDate>Tue, 28 Aug 2012 06:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-283033</guid>
		<description>Hi,
actually this code
{code}
        Set strs = new TreeSet();
        strs.add("");
        for (String str : strs) {}
{code}
should not compile (and is highlighted in IDEA) as 'strs' has raw type and cant be converted without cast to Set&lt;String&gt;. 
On the other hand code 
{code}
        Set&lt;String&gt; strs = new TreeSet&lt;String&gt;((o1, o2) -&gt; {
            return o2.compareToIgnoreCase(o1);
        });
{code}
compile but is highlighted in the IDE. Will investigate the problem. Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
actually this code<br />
{code}<br />
        Set strs = new TreeSet();<br />
        strs.add(&#8221;");<br />
        for (String str : strs) {}<br />
{code}<br />
should not compile (and is highlighted in IDEA) as &#8217;strs&#8217; has raw type and cant be converted without cast to Set<string>.<br />
On the other hand code<br />
{code}<br />
        Set</string><string> strs = new TreeSet</string><string>((o1, o2) -> {<br />
            return o2.compareToIgnoreCase(o1);<br />
        });<br />
{code}<br />
compile but is highlighted in the IDE. Will investigate the problem. Thanks</string></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jtonic</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-282941</link>
		<dc:creator>jtonic</dc:creator>
		<pubDate>Mon, 27 Aug 2012 18:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-282941</guid>
		<description>Thank you Anna

It works. 

Regarding the other issue, is it a JDK-1.8 issue or IDE one?

Regards</description>
		<content:encoded><![CDATA[<p>Thank you Anna</p>
<p>It works. </p>
<p>Regarding the other issue, is it a JDK-1.8 issue or IDE one?</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denny</title>
		<link>http://blogs.jetbrains.com/idea/2012/08/check-lambda-support-in-intellij-idea-12-eap-build-122202/#comment-282902</link>
		<dc:creator>Denny</dc:creator>
		<pubDate>Mon, 27 Aug 2012 10:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.jetbrains.com/idea/?p=7540#comment-282902</guid>
		<description>What's the font in the picture?</description>
		<content:encoded><![CDATA[<p>What&#8217;s the font in the picture?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
