2007-11-06 12:13:52 +00:00
< html >
< head >
2009-12-11 21:01:22 +00:00
< meta http-equiv = "Content-Type" content = "text/html; charset=US-ASCII" >
2007-11-06 12:13:52 +00:00
< title > Change log< / title >
2007-11-07 03:46:23 +00:00
< link rel = "stylesheet" href = "../../../../../doc/html/boostbook.css" type = "text/css" >
2010-04-11 00:31:21 +00:00
< meta name = "generator" content = "DocBook XSL Stylesheets V1.75.1" >
2009-12-11 21:01:22 +00:00
< link rel = "home" href = "../index.html" title = "Chapter 1. Fusion 2.0" >
< link rel = "up" href = "../index.html" title = "Chapter 1. Fusion 2.0" >
2009-09-25 00:21:53 +00:00
< link rel = "prev" href = "notes.html" title = "Notes" >
2007-11-06 12:13:52 +00:00
< link rel = "next" href = "acknowledgements.html" title = "Acknowledgements" >
< / head >
< body bgcolor = "white" text = "black" link = "#0000FF" vlink = "#840084" alink = "#0000FF" >
< table cellpadding = "2" width = "100%" > < tr >
< td valign = "top" > < img alt = "Boost C++ Libraries" width = "277" height = "86" src = "../../../../../boost.png" > < / td >
2008-07-17 23:59:22 +00:00
< td align = "center" > < a href = "../../../../../index.html" > Home< / a > < / td >
2007-11-06 12:13:52 +00:00
< td align = "center" > < a href = "../../../../libraries.htm" > Libraries< / a > < / td >
2008-07-17 23:59:22 +00:00
< td align = "center" > < a href = "http://www.boost.org/users/people.html" > People< / a > < / td >
< td align = "center" > < a href = "http://www.boost.org/users/faq.html" > FAQ< / a > < / td >
2007-11-06 12:13:52 +00:00
< td align = "center" > < a href = "../../../../../more/index.htm" > More< / a > < / td >
< / tr > < / table >
< hr >
< div class = "spirit-nav" >
< a accesskey = "p" href = "notes.html" > < img src = "../../../../../doc/html/images/prev.png" alt = "Prev" > < / a > < a accesskey = "u" href = "../index.html" > < img src = "../../../../../doc/html/images/up.png" alt = "Up" > < / a > < a accesskey = "h" href = "../index.html" > < img src = "../../../../../doc/html/images/home.png" alt = "Home" > < / a > < a accesskey = "n" href = "acknowledgements.html" > < img src = "../../../../../doc/html/images/next.png" alt = "Next" > < / a >
< / div >
2009-09-25 00:21:53 +00:00
< div class = "section" title = "Change log" >
< div class = "titlepage" > < div > < div > < h2 class = "title" style = "clear: both" >
< a name = "fusion.change_log" > < / a > < a class = "link" href = "change_log.html" title = "Change log" > Change log< / a >
< / h2 > < / div > < / div > < / div >
2007-11-06 12:13:52 +00:00
< p >
This section summarizes significant changes to the Fusion library.
< / p >
2009-09-25 00:21:53 +00:00
< div class = "itemizedlist" > < ul class = "itemizedlist" type = "disc" >
< li class = "listitem" >
Sep 27, 2006: Added < code class = "computeroutput" > < span class = "identifier" > boost< / span > < span class = "special" > ::< / span > < span class = "identifier" > tuple< / span > < / code >
2007-12-20 23:28:26 +00:00
support. (Joel de Guzman)
2007-11-06 12:13:52 +00:00
< / li >
2009-09-25 00:21:53 +00:00
< li class = "listitem" >
Nov 17, 2006: Added < code class = "computeroutput" > < span class = "identifier" > boost< / span > < span class = "special" > ::< / span > < span class = "identifier" > variant< / span > < / code >
2007-12-20 23:28:26 +00:00
support. (Joel de Guzman)
2007-11-06 12:13:52 +00:00
< / li >
2009-09-25 00:21:53 +00:00
< li class = "listitem" >
2007-12-20 23:28:26 +00:00
Feb 15, 2007: Added functional module. (Tobias Schwinger)
< / li >
2009-09-25 00:21:53 +00:00
< li class = "listitem" >
2009-12-29 13:44:01 +00:00
April 2, 2007: Added struct adapter. (Joel de Guzman)
2007-12-20 23:28:26 +00:00
< / li >
2009-09-25 00:21:53 +00:00
< li class = "listitem" >
2007-12-20 23:28:26 +00:00
May 8, 2007: Added associative struct adapter. (Dan Marsden)
< / li >
2009-09-25 00:21:53 +00:00
< li class = "listitem" >
Dec 20, 2007: Removed < code class = "computeroutput" > < span class = "identifier" > boost< / span > < span class = "special" > ::< / span > < span class = "identifier" > variant< / span > < / code >
2007-12-20 23:28:26 +00:00
support. After thorough investigation, I think now that the move to make
variant a fusion sequence is rather quirky. A variant will always have a
size==1 regardless of the number of types it can contain and there's no way
to know at compile time what it contains. Iterating over its types is simply
2009-09-25 00:21:53 +00:00
wrong. All these imply that the variant is < span class = "bold" > < strong > not< / strong > < / span >
2007-12-20 23:28:26 +00:00
a fusion sequence. (Joel de Guzman)
2007-11-06 12:13:52 +00:00
< / li >
2009-12-29 13:44:01 +00:00
< li class = "listitem" >
Oct 12, 2009: The accumulator is the first argument to the functor of < a class = "link" href = "algorithm/iteration/functions/fold.html" title = "fold" > < code class = "computeroutput" > < span class = "identifier" > fold< / span > < / code > < / a >
and < a class = "link" href = "algorithm/iteration/functions/accumulate.html" title = "accumulate" > < code class = "computeroutput" > < span class = "identifier" > accumulate< / span > < / code > < / a > . (Christopher Schmidt)
< / li >
< li class = "listitem" >
Oct 30, 2009: Added support for associative iterators and views. (Christopher
Schmidt)
< / li >
2010-04-11 00:31:21 +00:00
< li class = "listitem" >
March 1, 2010: Added < a class = "link" href = "adapted/adapt_struct_named.html" title = "BOOST_FUSION_ADAPT_STRUCT_NAMED" > BOOST_FUSION_ADAPT_STRUCT_NAMED< / a >
and < a class = "link" href = "adapted/adapt_struct_named.html" title = "BOOST_FUSION_ADAPT_STRUCT_NAMED" > BOOST_FUSION_ADAPT_STRUCT_NAMED_NS< / a >
(Hartmut Kaiser)
< / li >
< li class = "listitem" >
April 4, 2010: Added < a class = "link" href = "adapted/array.html" title = "Array" > array< / a > support,
< a class = "link" href = "adapted/adapt_tpl_struct.html" title = "BOOST_FUSION_ADAPT_TPL_STRUCT" > BOOST_FUSION_ADAPT_TPL_STRUCT< / a > ,
< a class = "link" href = "adapted/adapt_assoc_tpl_struct.html" title = "BOOST_FUSION_ADAPT_ASSOC_TPL_STRUCT" > BOOST_FUSION_ADAPT_ASSOC_TPL_STRUCT< / a > ,
< a class = "link" href = "adapted/adapt_assoc_struct_named.html" title = "BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED" > BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED< / a >
and < a class = "link" href = "adapted/adapt_assoc_struct_named.html" title = "BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED" > BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED_NS< / a >
(Christopher Schmidt)
< / li >
2007-11-06 12:13:52 +00:00
< / ul > < / div >
< / div >
< table xmlns:rev = "http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width = "100%" > < tr >
< td align = "left" > < / td >
2009-12-11 21:01:22 +00:00
< td align = "right" > < div class = "copyright-footer" > Copyright © 2001-2007 Joel de Guzman, Dan Marsden, Tobias
2007-11-07 02:12:28 +00:00
Schwinger< p >
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at < a href = "http://www.boost.org/LICENSE_1_0.txt" target = "_top" > http://www.boost.org/LICENSE_1_0.txt< / a > )
2007-11-14 10:17:09 +00:00
< / p >
< / div > < / td >
2007-11-06 12:13:52 +00:00
< / tr > < / table >
< hr >
< div class = "spirit-nav" >
< a accesskey = "p" href = "notes.html" > < img src = "../../../../../doc/html/images/prev.png" alt = "Prev" > < / a > < a accesskey = "u" href = "../index.html" > < img src = "../../../../../doc/html/images/up.png" alt = "Up" > < / a > < a accesskey = "h" href = "../index.html" > < img src = "../../../../../doc/html/images/home.png" alt = "Home" > < / a > < a accesskey = "n" href = "acknowledgements.html" > < img src = "../../../../../doc/html/images/next.png" alt = "Next" > < / a >
< / div >
< / body >
< / html >