<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>nstl Forum Rss Feed</title><link>http://www.codeplex.com/Project/ListForums.aspx?ProjectName=nstl</link><description>nstl Forum Rss Description</description><item><title>NEW POST: Have you looked at PowerCollections? (moved from comment Section)</title><link>http://www.codeplex.com/nstl/Thread/View.aspx?ThreadId=24089</link><description>&lt;div class="wikidoc"&gt;
&lt;div class="quote"&gt;
 &lt;br /&gt;AndyM wrote:&lt;br /&gt; alireza0 wrote  Oct 26 2007 at 3:45 AM  delete this comment :&lt;br /&gt; &lt;br /&gt;Have you looked at PowerCollections project. It provides a bunch of containers similar to STL's offerings and a separate algorithms class which provides the functionality of STL's algorithms. It is a bit old though, so I am not sure whether it will ever support LINQ.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt; &lt;br /&gt;Yes I did. At the time when I have started the NSTL, they had a couple of good containers, but very limited Algorithms support. That's why I went on. This has changed!. The latest version includes a lot of algorithms and containers. As they are close to the .NET design guidelines an are a well known and widespread project, they are definetly worth a consideration. The NSTL interacts very nice with them through the collection interfaces.&lt;br /&gt;
&lt;/div&gt;</description><author>AndyM</author><pubDate>Fri, 14 Mar 2008 22:16:25 GMT</pubDate><guid isPermaLink="false">NEW POST: Have you looked at PowerCollections? (moved from comment Section) 20080314101625P</guid></item><item><title>NEW POST: Have you looked at PowerCollections? (moved from comment Section)</title><link>http://www.codeplex.com/nstl/Thread/View.aspx?ThreadId=24089</link><description>&lt;div class="wikidoc"&gt;
 alireza0 wrote  Oct 26 2007 at 3:45 AM  delete this comment :&lt;br /&gt; &lt;br /&gt;Have you looked at PowerCollections project. It provides a bunch of containers similar to STL's offerings and a separate algorithms class which provides the functionality of STL's algorithms. It is a bit old though, so I am not sure whether it will ever support LINQ.&lt;br /&gt;
&lt;/div&gt;</description><author>AndyM</author><pubDate>Fri, 14 Mar 2008 22:08:46 GMT</pubDate><guid isPermaLink="false">NEW POST: Have you looked at PowerCollections? (moved from comment Section) 20080314100846P</guid></item><item><title>NEW POST: Map</title><link>http://www.codeplex.com/nstl/Thread/View.aspx?ThreadId=11378</link><description>&lt;div class="wikidoc"&gt;
&lt;div class="quote"&gt;
 &lt;br /&gt;batteken wrote:&lt;br /&gt;Can you give me an example on how to use the map ?&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;I'm usually not using C++/CLI, but I just came up withe the following simple example that compiles and works:&lt;br /&gt;&lt;pre&gt;
using namespace System;
using namespace System::Collections::Generic;
 
using namespace NStl;
using namespace NStl::Collections;
 
int main(array&amp;lt;String ^&amp;gt; ^args)
{
	Map&amp;lt;int, double&amp;gt;^ m = gcnew Map&amp;lt;int, double&amp;gt;(Functional::Less&amp;lt;int&amp;gt;());
 
	m-&amp;gt;Insert(1, 1.0);
	m-&amp;gt;Insert(2, 1.0);
 
 
	Algorithm::Copy(m-&amp;gt;Begin(), m-&amp;gt;End(), NStlUtil::ConsoleOutput&amp;lt;KeyValuePair&amp;lt;int, double&amp;gt; &amp;gt;(Environment::NewLine));
 
 
	Console::WriteLine(String::Empty);
        return 0;
}
&lt;/pre&gt;&lt;div class="quote"&gt;
 &lt;br /&gt;This compiles, but when closing the application, I get errors.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;What kind of errors? As mentioned, my (first) C++/CLI example works fine. Can you provide a small but complete sample?&lt;br /&gt; &lt;br /&gt;HTH,&lt;br /&gt;Andy&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>AndyM</author><pubDate>Thu, 14 Jun 2007 22:01:38 GMT</pubDate><guid isPermaLink="false">NEW POST: Map 20070614100138P</guid></item><item><title>NEW POST: Map</title><link>http://www.codeplex.com/nstl/Thread/View.aspx?ThreadId=11378</link><description>&lt;div class="wikidoc"&gt;
Can you give me an example on how to use the map ?&lt;br /&gt; &lt;br /&gt;I keep getting errors in the constructor.  Remark: I use C++;&lt;br /&gt; &lt;br /&gt;I do the following:&lt;br /&gt; &lt;br /&gt;Map&amp;lt;int,double&amp;gt; lovMyVector;&lt;br /&gt; &lt;br /&gt;or&lt;br /&gt; &lt;br /&gt;Map&amp;lt;int,double&amp;gt; lovMyVector = gcnew Map&amp;lt;int,double&amp;gt;();&lt;br /&gt; &lt;br /&gt;I get an error that there is no default constructor, which is correct, but what do I have to fill in then as parameter.&lt;br /&gt;I saw the help, so I tried the following:&lt;br /&gt; &lt;br /&gt;Map&amp;lt;int,double&amp;gt; lovMyVector(Functional::Less&amp;lt;int&amp;gt;);&lt;br /&gt; &lt;br /&gt;Also this gives me errors, so I tried the following:&lt;br /&gt; &lt;br /&gt;Map&amp;lt;int,double&amp;gt; lovMyVector(Functional::Less&amp;lt;int&amp;gt;());&lt;br /&gt; &lt;br /&gt;This compiles, but when closing the application, I get errors.&lt;br /&gt; &lt;br /&gt;So, what is the good way to specify a map ?&lt;br /&gt; &lt;br /&gt;I don't have problems with Vector and DList which I also tested.&lt;br /&gt; &lt;br /&gt;regards and thanks for this very nice portal from standard STL to NSTL.&lt;br /&gt;Bart&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>batteken</author><pubDate>Thu, 14 Jun 2007 05:36:04 GMT</pubDate><guid isPermaLink="false">NEW POST: Map 20070614053604A</guid></item><item><title>Project Management Forum: RE: Info required on this project</title><link>http://www.codeplex.com/Project/DisplayThread.aspx?ProjectName=nstl&amp;ForumId=2288&amp;ThreadId=2383&amp;ANCHOR#LastPost</link><description>Hi Andy,
 Thanks for your valuable comments. I will go through the source code and let you know in case I have any issues.

mecspek</description><author>mecspek</author><pubDate>Fri, 17 Nov 2006 03:26:08 GMT</pubDate><guid isPermaLink="false">Project Management Forum: RE: Info required on this project 20061117032608A</guid></item><item><title>Project Management Forum: RE: Info required on this project</title><link>http://www.codeplex.com/Project/DisplayThread.aspx?ProjectName=nstl&amp;ForumId=2288&amp;ThreadId=2383&amp;ANCHOR#LastPost</link><description>Hi mecspek,

I've just updated the projects "Home" section with a (very) short overview of the project. 

Basically the project has started as a port of the SGI C++ STL implementation to .NET. The first (non public) release on .NET 1.1 was in early 2004. The current release is completely ported to C# 2.0 using the new generic features. 

The library consists of an almost complete implementation of the STL algorithms, functors and binders and is in active use in several large commercial projects I work on. 

The next couple minor releases will consist of new containers, some more algorithms that are not part of Standard C++, but are available in different STL implementations.

The next major release is targeted for C# 3.0 and will offer the STLs algorithms as LINQ query operator.

I hope this short overview helps you a bit. If not, just let me know what you are interested in specifically.

Cheers,
Andy
</description><author>AndyM</author><pubDate>Thu, 16 Nov 2006 00:22:19 GMT</pubDate><guid isPermaLink="false">Project Management Forum: RE: Info required on this project 20061116122219A</guid></item><item><title>Project Management Forum: Info required on this project</title><link>http://www.codeplex.com/Project/DisplayThread.aspx?ProjectName=nstl&amp;ForumId=2288&amp;ThreadId=2383&amp;ANCHOR#LastPost</link><description>Hi,
 Can you please outline what this project all about. I am a newbie to CodePlex and so please excuse if this is not the way to approach.

Thanks in advance,

mecspek</description><author>mecspek</author><pubDate>Wed, 15 Nov 2006 08:47:24 GMT</pubDate><guid isPermaLink="false">Project Management Forum: Info required on this project 20061115084724A</guid></item></channel></rss>