mirror of
https://github.com/boostorg/optional.git
synced 2025-07-13 20:36:38 +02:00
53 lines
3.6 KiB
HTML
53 lines
3.6 KiB
HTML
![]() |
<html>
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|||
|
<title>Implementation Notes</title>
|
|||
|
<link rel="stylesheet" href="../boostbook.css" type="text/css">
|
|||
|
<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
|
|||
|
<link rel="start" href="../index.html" title="Chapter<65>1.<2E>Boost.Optional">
|
|||
|
<link rel="up" href="../index.html" title="Chapter<65>1.<2E>Boost.Optional">
|
|||
|
<link rel="prev" href="type_requirements.html" title="Type requirements">
|
|||
|
<link rel="next" href="dependencies_and_portability.html" title="Dependencies
|
|||
|
and Portability">
|
|||
|
</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.html">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="type_requirements.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="dependencies_and_portability.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="boost_optional.implementation_notes"></a><a href="implementation_notes.html" title="Implementation Notes">Implementation Notes</a>
|
|||
|
</h2></div></div></div>
|
|||
|
<p>
|
|||
|
<code class="computeroutput"><span class="identifier">optional</span><span class="special"><</span><span class="identifier">T</span><span class="special">></span></code> is
|
|||
|
currently implemented using a custom aligned storage facility built from <code class="computeroutput"><span class="identifier">alignment_of</span></code> and <code class="computeroutput"><span class="identifier">type_with_alignment</span></code>
|
|||
|
(both from Type Traits). It uses a separate boolean flag to indicate the initialization
|
|||
|
state. Placement new with <code class="computeroutput"><span class="identifier">T</span></code>'s
|
|||
|
copy constructor and <code class="computeroutput"><span class="identifier">T</span></code>'s destructor
|
|||
|
are explicitly used to initialize,copy and destroy optional values. As a result,
|
|||
|
<code class="computeroutput"><span class="identifier">T</span></code>'s default constructor is
|
|||
|
effectively by-passed, but the exception guarantees are basic. It is planned
|
|||
|
to replace the current implementation with another with stronger exception
|
|||
|
safety, such as a future <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">variant</span></code>.
|
|||
|
</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> 2003 -2007 Fernando Luis Cacciola Carballal</small></td>
|
|||
|
</tr></table>
|
|||
|
<hr>
|
|||
|
<div class="spirit-nav">
|
|||
|
<a accesskey="p" href="type_requirements.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="dependencies_and_portability.html"><img src="../images/next.png" alt="Next"></a>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|