<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <pubDate>Wed, 27 Jan 2010 14:12:52 GMT</pubDate>
    <description>News headline of CSTL (cstl) @ SourceForge.JP</description>
    <link>http://en.sourceforge.jp/projects/cstl/</link>
    <atom:link href="http://en.sourceforge.jp/projects/cstl/news/rss" rel="self" type="application/rss+xml" />
    <title>News of CSTL</title>
        <language>ja-jp</language>
        <item>
            <pubDate>Wed, 27 Jan 2010 14:12:52 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 0.7.0リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/19645</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/19645</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;p&gt;CSTL 0.7.0をリリースしました。
&lt;/p&gt;&lt;p&gt;CSTLは、C言語で使えるC++のSTLライクなコンテナライブラリです。
vector, deque, list, set, multiset, map, multimap, unordered_set, unordered_multiset, unordered_map, unordered_multimap, stringを提供します。
&lt;/p&gt;&lt;p&gt;0.7.0の変更点は以下のとおりです。
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ハッシュコンテナ(unordered_set, unordered_multiset, unordered_map, unordered_multimap)を追加。
&lt;/li&gt;&lt;li&gt;vectorのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;push_back_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_n_ref()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;dequeのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;push_front_ref()を追加。
&lt;/li&gt;&lt;li&gt;push_back_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_n_ref()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;listのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;push_front_ref()を追加。
&lt;/li&gt;&lt;li&gt;push_back_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_ref()を追加。
&lt;/li&gt;&lt;li&gt;insert_n_ref()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;setのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;equal_range()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;mapのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;equal_range()を追加。
&lt;/li&gt;&lt;li&gt;insert_ref()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;vector, dequeのバグ修正。
&lt;/li&gt;&lt;li&gt;vector, deque, stringを高速化。
&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description>
          </item>
        <item>
            <pubDate>Tue, 21 Apr 2009 05:47:40 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 0.6.0リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/17935</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/17935</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;p&gt;CSTL 0.6.0をリリースしました。
&lt;/p&gt;&lt;p&gt;CSTLは、C言語で使えるC++のSTLライクなコンテナライブラリです。vector, deque, list, set, multiset, map, multimap, stringを提供します。
&lt;/p&gt;&lt;p&gt;0.6.0の変更点は以下のとおりです。
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;vectorのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;new(size_t n)をnew_reserve(size_t n)に変更。
&lt;/li&gt;&lt;li&gt;new(void)を追加。
&lt;/li&gt;&lt;li&gt;pop_back()を戻り値なしに変更。
&lt;/li&gt;&lt;li&gt;front(), back()の戻り値を値からポインタに変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;dequeのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;pop_front(), pop_back()を戻り値なしに変更。
&lt;/li&gt;&lt;li&gt;front(), back()の戻り値を値からポインタに変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;listのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;pop_front(), pop_back()を戻り値なしに変更。
&lt;/li&gt;&lt;li&gt;front(), back()の戻り値を値からポインタに変更。
&lt;/li&gt;&lt;li&gt;at()をdata()に変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;setのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;key()をdata()に変更し、戻り値を値からポインタに変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;mapのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;key()の戻り値を値からポインタに変更。
&lt;/li&gt;&lt;li&gt;lookup()をat()に変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;stringのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;new(size_t n)をnew_reserve(size_t n)に変更。
&lt;/li&gt;&lt;li&gt;new(void)を追加。
&lt;/li&gt;&lt;li&gt;new_assign(), new_assign_len(), new_assign_c()を追加。
&lt;/li&gt;&lt;li&gt;pop_back()を戻り値なしに変更。
&lt;/li&gt;&lt;li&gt;find関連関数の第一引数をCの文字列からString*に変更。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;algorithmにpartial_sort()を追加。
&lt;/li&gt;&lt;li&gt;stringのバグをいくつか修正。
&lt;/li&gt;&lt;li&gt;ドキュメントをDoxygenで生成するように変更。
&lt;/li&gt;&lt;li&gt;各コンテナにおいて、不完全型ポインタを宣言できるように構造体タグ名を公開。
&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description>
          </item>
        <item>
            <pubDate>Wed, 25 Jun 2008 00:45:56 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 0.5.0リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/16832</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/16832</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;p&gt;CSTL 0.5.0をリリースしました。
&lt;/p&gt;&lt;p&gt;CSTLは、C言語で使えるC++のSTLライクなコンテナライブラリです。vector, deque, list, set, multiset, map, multimap, stringを提供します。
&lt;/p&gt;&lt;p&gt;0.5.0の変更点は以下のとおりです。
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;各コンテナにおいて、delete()の引数がNULLの場合、何もしない仕様に修正。
&lt;/li&gt;&lt;li&gt;stringのインターフェイスを変更。
&lt;ul&gt;&lt;li&gt;data()を追加。
&lt;/li&gt;&lt;li&gt;pop_back()を追加。
&lt;/li&gt;&lt;li&gt;assign(), append(), insert(), replace()の引数と戻り値を変更。
&lt;/li&gt;&lt;li&gt;assign_c(), append_c(), insert_c(), replace_c(), push_back(), erase()の戻り値を変更。
&lt;/li&gt;&lt;li&gt;assign_len(), append_len(), insert_len(), replace_len()を追加。
&lt;/li&gt;&lt;li&gt;find(), rfind(), find_first_of(), find_last_of(), find_first_not_of(), find_last_not_of()の引数を変更。
&lt;/li&gt;&lt;li&gt;find_len(), rfind_len(), find_first_of_len(), find_last_of_len(), find_first_not_of_len(), find_last_not_of_len()を追加。
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description>
          </item>
        <item>
            <pubDate>Mon, 25 Feb 2008 00:26:13 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 0.4.0リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/16457</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/16457</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;pre&gt;CSTL 0.4.0をリリースしました。

CSTLは、C言語で使えるC++のSTLライクなコンテナライブラリです。vector, deque, list, set, multiset, map, multimap, stringを提供します。


0.4.0の変更点は以下のとおりです。
- vector, deque, stringにおいて、共通なアルゴリズムを追加。
- listにおいて、sort(), reverse(), merge()を追加。
- vector, deque, list, において、insert_n()を追加。
- vector, deque, set, multiset, map, multimapにおいて、insert_range()を追加。
- vector, deque, list, set, multiset, map, multimapにおいて、assign()を削除。
&lt;/pre&gt;&lt;/div&gt;</description>
          </item>
        <item>
            <pubDate>Tue, 15 May 2007 03:11:07 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 0.3.0リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/15668</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/15668</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;pre&gt;CSTL 0.3.0をリリースしました。

CSTLは、C++のSTLライクなC/C++用のコンテナライブラリです。vector, deque, list, set, multiset, map, multimap, stringを提供します。


0.3.0の変更点は以下のとおりです。
- dequeの動的な拡張に対応。それに伴いインターフェイスも一部変更。
- すべてのマクロにCSTL_のprefixを付加。
- set/mapの実装マクロの引数のOrderを削除。
&lt;/pre&gt;&lt;/div&gt;</description>
          </item>
        <item>
            <pubDate>Sat, 03 Mar 2007 13:17:48 GMT</pubDate>
            <dc:creator>katono (katono)</dc:creator>
            <title>CSTL 初リリース</title>
            <link>http://en.sourceforge.jp/projects/cstl/news/15502</link>
            <guid>http://en.sourceforge.jp/projects/cstl/news/15502</guid>
            <description>&lt;div class=&quot;wiki-compact&quot;&gt;&lt;pre&gt;CSTL 0.1.0をリリースしました。

CSTLは、C++のSTLライクなC/C++用のコンテナライブラリです。vector, deque, list, set, multiset, map, multimap, stringを提供します。
&lt;/pre&gt;&lt;/div&gt;</description>
          </item>
      </channel>
</rss>
