forked from boostorg/fusion
160 lines
8.1 KiB
HTML
160 lines
8.1 KiB
HTML
![]() |
<html>
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|||
|
<title>Preface</title>
|
|||
|
<link rel="stylesheet" href="../boostbook.css" type="text/css">
|
|||
|
<meta name="generator" content="DocBook XSL Stylesheets V1.66.1">
|
|||
|
<link rel="start" href="../index.html" title="Chapter<65>1.<2E>Fusion 2.0">
|
|||
|
<link rel="up" href="../index.html" title="Chapter<65>1.<2E>Fusion 2.0">
|
|||
|
<link rel="prev" href="../index.html" title="Chapter<65>1.<2E>Fusion 2.0">
|
|||
|
<link rel="next" href="introduction.html" title="Introduction">
|
|||
|
</head>
|
|||
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|||
|
<table cellpadding="2" width="100%">
|
|||
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
|
|||
|
<td align="center"><a href="../../../../../index.htm">Home</a></td>
|
|||
|
<td align="center"><a href="../../../../libraries.htm">Libraries</a></td>
|
|||
|
<td align="center"><a href="../../../../../people/people.htm">People</a></td>
|
|||
|
<td align="center"><a href="../../../../../more/faq.htm">FAQ</a></td>
|
|||
|
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
|
|||
|
</table>
|
|||
|
<hr>
|
|||
|
<div class="spirit-nav">
|
|||
|
<a accesskey="p" href="../index.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="introduction.html"><img src="../images/next.png" alt="Next"></a>
|
|||
|
</div>
|
|||
|
<div class="section" lang="en">
|
|||
|
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
|||
|
<a name="fusion.preface"></a><a href="preface.html" title="Preface">Preface</a></h2></div></div></div>
|
|||
|
<div class="blockquote"><blockquote class="blockquote"><p>
|
|||
|
<span class="emphasis"><em>“<span class="quote">Algorithms + Data Structures = Programs.</span>”</em></span>
|
|||
|
</p></blockquote></div>
|
|||
|
<div class="blockquote"><blockquote class="blockquote"><p>
|
|||
|
<span class="bold"><b>--Niklaus Wirth</b></span>
|
|||
|
</p></blockquote></div>
|
|||
|
<a name="fusion.preface.description"></a><h3>
|
|||
|
<a name="id372639"></a>
|
|||
|
<a href="preface.html#fusion.preface.description">Description</a>
|
|||
|
</h3>
|
|||
|
<p>
|
|||
|
Fusion is a library for working with hetrogenous collections of data, commonly
|
|||
|
referred to as tuples. A set of containers (vector, list, set and map) is provided,
|
|||
|
along with views that provide a transformed presentation of their underlying
|
|||
|
data. Collectively the containers and views are referred to as sequences, and
|
|||
|
Fusion has a suite of algorithms that operate upon the various sequence types,
|
|||
|
using an iterator concept that binds everything together.
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
The architecture is modeled after <a href="http://www.boost.org/libs/mpl/index.html" target="_top">MPL</a>
|
|||
|
which in turn is modeled after <a href="http://en.wikipedia.org/wiki/Standard_Template_Library" target="_top">STL</a>.
|
|||
|
It is named "fusion" because the library is a "fusion"
|
|||
|
of compile time metaprogramming with runtime programming.
|
|||
|
</p>
|
|||
|
<a name="fusion.preface.motivation"></a><h3>
|
|||
|
<a name="id372690"></a>
|
|||
|
<a href="preface.html#fusion.preface.motivation">Motivation</a>
|
|||
|
</h3>
|
|||
|
<p>
|
|||
|
Tuples are powerful beasts. After having developed two significant projects
|
|||
|
(<a href="http://spirit.sourceforge.net" target="_top">Spirit</a> and <a href="http://boost.org/libs/spirit/phoenix/index.html" target="_top">Phoenix</a>)
|
|||
|
that relied heavily metaprogramming, it became apparent that tuples are a powerful
|
|||
|
means to simplify otherwise tricky tasks; especially those that require a combination
|
|||
|
of metaprogramming and manipulation of heterogenous data types with values.
|
|||
|
While <a href="http://www.boost.org/libs/mpl/index.html" target="_top">MPL</a> is
|
|||
|
an extremely powerful metaprogramming tool, <a href="http://www.boost.org/libs/mpl/index.html" target="_top">MPL</a>
|
|||
|
focuses on type manipulation only. Ultimately, you'll have to map these types
|
|||
|
to real values to make them useful in the runtime world where all the real
|
|||
|
action takes place.
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
As <a href="http://spirit.sourceforge.net" target="_top">Spirit</a> and <a href="http://boost.org/libs/spirit/phoenix/index.html" target="_top">Phoenix</a>
|
|||
|
evolved, patterns and idioms related to tuple manipulation emerged. Soon, it
|
|||
|
became clear that those patterns and idioms were best assembled in a tuples
|
|||
|
algorithms library. <a href="http://www.boost.org/people/dave_abrahams.htm" target="_top">David
|
|||
|
Abrahams</a> outlined such a scheme in 2002. At that time, it just so happened
|
|||
|
that <a href="http://spirit.sourceforge.net" target="_top">Spirit</a> and <a href="http://boost.org/libs/spirit/phoenix/index.html" target="_top">Phoenix</a>
|
|||
|
had an adhoc collection of tuple manipulation and traversal routines. It was
|
|||
|
an instant <span class="emphasis"><em>AHA!</em></span> moment.
|
|||
|
</p>
|
|||
|
<a name="fusion.preface.how_to_use_this_manual"></a><h3>
|
|||
|
<a name="id374509"></a>
|
|||
|
<a href="preface.html#fusion.preface.how_to_use_this_manual">How to use this manual</a>
|
|||
|
</h3>
|
|||
|
<p>
|
|||
|
Some icons are used to mark certain topics indicative of their relevance. These
|
|||
|
icons precede some text to indicate:
|
|||
|
</p>
|
|||
|
<div class="informaltable">
|
|||
|
<h4>
|
|||
|
<a name="id374536"></a>
|
|||
|
<span class="table-title">Icons</span>
|
|||
|
</h4>
|
|||
|
<table class="table">
|
|||
|
<colgroup>
|
|||
|
<col>
|
|||
|
<col>
|
|||
|
<col>
|
|||
|
</colgroup>
|
|||
|
<thead><tr>
|
|||
|
<th>Icon</th>
|
|||
|
<th>Name</th>
|
|||
|
<th>Meaning</th>
|
|||
|
</tr></thead>
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td><span class="inlinemediaobject"><img src="../images/note.png" alt="note"></span></td>
|
|||
|
<td>Note</td>
|
|||
|
<td>Information provided
|
|||
|
is auxiliary but will give the reader a deeper insight into a specific
|
|||
|
topic. May be skipped.</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><span class="inlinemediaobject"><img src="../images/alert.png" alt="alert"></span></td>
|
|||
|
<td>Alert</td>
|
|||
|
<td>Information provided
|
|||
|
is of utmost importance.</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><span class="inlinemediaobject"><img src="../images/caution.png" alt="caution"></span></td>
|
|||
|
<td>Caution</td>
|
|||
|
<td>A mild warning.</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><span class="inlinemediaobject"><img src="../images/tip.png" alt="tip"></span></td>
|
|||
|
<td>Tip</td>
|
|||
|
<td>A potentially useful
|
|||
|
and helpful piece of information.</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
</div>
|
|||
|
<p>
|
|||
|
This documentation is automatically generated by Boost QuickBook documentation
|
|||
|
tool. QuickBook can be found in the <a href="http://www.boost.org/tools/index.html" target="_top">Boost
|
|||
|
Tools</a>.
|
|||
|
</p>
|
|||
|
<a name="fusion.preface.support"></a><h3>
|
|||
|
<a name="id373159"></a>
|
|||
|
<a href="preface.html#fusion.preface.support">Support</a>
|
|||
|
</h3>
|
|||
|
<p>
|
|||
|
Please direct all questions to Spirit's mailing list. You can subscribe to
|
|||
|
the <a href="https://lists.sourceforge.net/lists/listinfo/spirit-general" target="_top">Spirit
|
|||
|
Mailing List</a>. The mailing list has a searchable archive. A search link
|
|||
|
to this archive is provided in <a href="http://spirit.sourceforge.net" target="_top">Spirit</a>'s
|
|||
|
home page. You may also read and post messages to the mailing list through
|
|||
|
<a href="news://news.gmane.org/gmane.comp.spirit.general" target="_top">Spirit General
|
|||
|
NNTP news portal</a> (thanks to <a href="http://www.gmane.org" target="_top">Gmane</a>).
|
|||
|
The news group mirrors the mailing list. Here is a link to the archives: <a href="http://news.gmane.org/gmane.comp.parsers.spirit.general" target="_top">http://news.gmane.org/gmane.comp.parsers.spirit.general</a>.
|
|||
|
</p>
|
|||
|
</div>
|
|||
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|||
|
<td align="left"></td>
|
|||
|
<td align="right"><small>Copyright <20> 2001-2005 Joel de Guzman, Dan Marsden</small></td>
|
|||
|
</tr></table>
|
|||
|
<hr>
|
|||
|
<div class="spirit-nav">
|
|||
|
<a accesskey="p" href="../index.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="introduction.html"><img src="../images/next.png" alt="Next"></a>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|