2
0
mirror of https://github.com/boostorg/convert.git synced 2026-02-02 08:42:16 +00:00
Files
convert/doc/html/index.html
2014-02-15 09:02:30 +11:00

106 lines
6.5 KiB
HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Chapter&#160;1.&#160;The Boost Convert Library 2.0</title>
<link rel="stylesheet" href="boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Chapter&#160;1.&#160;The Boost Convert Library 2.0">
<link rel="next" href="the_boost_convert_library/convert_motivation.html" title="Motivation">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="spirit-nav"><a accesskey="n" href="the_boost_convert_library/convert_motivation.html"><img src="images/next.png" alt="Next"></a></div>
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
<a name="convert"></a>Chapter&#160;1.&#160;The Boost Convert Library 2.0</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Vladimir</span> <span class="surname">Batov</span>
</h3></div></div>
<div><p class="copyright">Copyright &#169; 2009-2014 Vladimir Batov</p></div>
<div><div class="legalnotice">
<a name="convert.legal"></a><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>)
</p>
</div></div>
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl>
<dt><span class="section"><a href="index.html#the_boost_convert_library.convert_intro">Introduction</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/convert_motivation.html">Motivation</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/convert_design.html">Design Notes</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/convert_started.html">Getting Started</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/convert_getting_serious.html">Getting
Serious</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/convert_algorithms.html">Boost.Convert
with Standard Algorithms</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/converters.html">Converters</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/__boost__lexical_cast__based_converter.html"><span class="emphasis"><em>boost::lexical_cast</em></span>-Based
Converter</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/__std__stringstream__based_converter.html"><span class="emphasis"><em>std::stringstream</em></span>-Based
Converter</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="the_boost_convert_library/__std__stringstream__based_converter.html#the_boost_convert_library.__std__stringstream__based_converter.formatting_support">Formatting
Support</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/__std__stringstream__based_converter/locale_support.html">Locale
Support</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/__std__stringstream__based_converter/integration_of_user_defined_types.html">Integration
of User-Defined Types</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/__std__stringstream__based_converter/performance.html">Performance</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="the_boost_convert_library/convert_default_constructible.html">The
<span class="emphasis"><em>Default Constructible</em></span> Type Requirement</a></span></dt>
<dt><span class="section"><a href="the_boost_convert_library/other_conversions.html">Other Conversions</a></span></dt>
<dt><span class="section"><a href="convert_reference.html">Convert Reference</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="convert_reference.html#header.boost.convert.api_hpp">Header &lt;boost/convert/api.hpp&gt;</a></span></dt>
<dd><dl></dl></dd>
<dt><span class="section"><a href="header/boost/convert/lexical_cast_converter_hpp.html">Header &lt;boost/convert/lexical_cast_converter.hpp&gt;</a></span></dt>
<dd><dl></dl></dd>
<dt><span class="section"><a href="header/boost/convert/safebool_hpp.html">Header &lt;boost/convert/safebool.hpp&gt;</a></span></dt>
<dd><dl></dl></dd>
<dt><span class="section"><a href="header/boost/convert/sstream_converter_hpp.html">Header &lt;boost/convert/sstream_converter.hpp&gt;</a></span></dt>
<dd><dl></dl></dd>
<dt><span class="section"><a href="header/boost/convert/string_sfinae_hpp.html">Header &lt;boost/convert/string_sfinae.hpp&gt;</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="the_boost_convert_library/convert_acknowledgements.html">Acknowledgements</a></span></dt>
<dt><span class="section"><a href="index/s14.html">Index</a></span></dt>
</dl>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="the_boost_convert_library.convert_intro"></a><a class="link" href="index.html#the_boost_convert_library.convert_intro" title="Introduction">Introduction</a>
</h2></div></div></div>
<p>
<span class="emphasis"><em>Boost.Convert</em></span> builds on the <span class="emphasis"><em>boost::lexical_cast</em></span>
original design and experience and takes those conversion/transformation-related
ideas further
</p>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem">
to be applicable to a wider range of conversion-related deployment scenarios,
</li>
<li class="listitem">
to provide a more flexible, extensible and configurable type-conversion
framework.
</li>
</ul></div>
<p>
Please note that <span class="bold"><strong>the described framework is not part
of the Boost library collection</strong></span> even though in this document it
is referred to as <span class="emphasis"><em>Boost.Convert</em></span> and the relevant code
is under the <span class="emphasis"><em>boost</em></span> directory. It is done so in preparation
for potential submission of the library to <span class="emphasis"><em>Boost</em></span>.
</p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: February 14, 2014 at 22:00:40 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td>
</tr></table>
<hr>
<div class="spirit-nav"><a accesskey="n" href="the_boost_convert_library/convert_motivation.html"><img src="images/next.png" alt="Next"></a></div>
</body>
</html>