forked from boostorg/optional
bad links fixed
added myself to people [SVN r25610]
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080">
|
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080">
|
||||||
<H2><IMG SRC="../../../boost.png" WIDTH="276" HEIGHT="86">Header <<A
|
<H2><IMG SRC="../../../boost.png" WIDTH="276" HEIGHT="86">Header <<A
|
||||||
HREF="../../../boost/optional.hpp">boost/optional.hpp</A>> </H2>
|
HREF="../../../boost/optional/optional.hpp">boost/optional/optional.hpp</A>> </H2>
|
||||||
|
|
||||||
<H2>Contents</H2>
|
<H2>Contents</H2>
|
||||||
<DL CLASS="page-index">
|
<DL CLASS="page-index">
|
||||||
@ -33,28 +33,28 @@ HREF="../../../boost/optional.hpp">boost/optional.hpp</A>> </H2>
|
|||||||
|
|
||||||
<H2><A NAME="mot"></A>Motivation</H2>
|
<H2><A NAME="mot"></A>Motivation</H2>
|
||||||
|
|
||||||
<P>Consider these functions which should return a value but which might not have
|
<P>Consider these functions which should return a value but which might not have
|
||||||
a value to return:</P>
|
a value to return:</P>
|
||||||
<pre>(A) double sqrt(double n );
|
<pre>(A) double sqrt(double n );
|
||||||
(B) char get_async_input();
|
(B) char get_async_input();
|
||||||
(C) point polygon::get_any_point_effectively_inside();</pre>
|
(C) point polygon::get_any_point_effectively_inside();</pre>
|
||||||
<P>There are different approaches to the issue of not having a value to return.</P>
|
<P>There are different approaches to the issue of not having a value to return.</P>
|
||||||
<P>A typical approach is to consider the existence of a valid return value as
|
<P>A typical approach is to consider the existence of a valid return value as
|
||||||
a postcondition, so that if the function cannot compute the value to return,
|
a postcondition, so that if the function cannot compute the value to return,
|
||||||
it has either undefined behavior (and can use asssert in a debug build)
|
it has either undefined behavior (and can use asssert in a debug build)
|
||||||
or uses a runtime check and throws an exception if the postcondition is violated.
|
or uses a runtime check and throws an exception if the postcondition is violated.
|
||||||
This is a reasonable choice for example, for function (A), because the
|
This is a reasonable choice for example, for function (A), because the
|
||||||
lack of a proper return value is directly related to an invalid parameter (out
|
lack of a proper return value is directly related to an invalid parameter (out
|
||||||
of domain argument), so it is appropriate to require the callee to supply only
|
of domain argument), so it is appropriate to require the callee to supply only
|
||||||
parameters in a valid domain for execution to continue normally.</P>
|
parameters in a valid domain for execution to continue normally.</P>
|
||||||
<P>However, function (B), because of its asynchronous nature, does not fail just
|
<P>However, function (B), because of its asynchronous nature, does not fail just
|
||||||
because it can't find a value to return; so it is incorrect to consider
|
because it can't find a value to return; so it is incorrect to consider
|
||||||
such a situation an error and assert or throw an exception. This function must
|
such a situation an error and assert or throw an exception. This function must
|
||||||
return, and somehow, must tell the callee that it is not returning a meaningful
|
return, and somehow, must tell the callee that it is not returning a meaningful
|
||||||
value.</P>
|
value.</P>
|
||||||
<P>A similar situation occurs with function (C): it is conceptually an error to
|
<P>A similar situation occurs with function (C): it is conceptually an error to
|
||||||
ask a <i>null-area</i> polygon to return a point inside itself, but in many
|
ask a <i>null-area</i> polygon to return a point inside itself, but in many
|
||||||
applications, it is just impractical for performance reasons to treat this as
|
applications, it is just impractical for performance reasons to treat this as
|
||||||
an error (because detecting that the polygon has no area might be too expensive
|
an error (because detecting that the polygon has no area might be too expensive
|
||||||
to be required to be tested previously), and either an arbitrary point (typically
|
to be required to be tested previously), and either an arbitrary point (typically
|
||||||
at infinity) is returned, or some efficient way to tell the callee that there
|
at infinity) is returned, or some efficient way to tell the callee that there
|
||||||
@ -106,7 +106,7 @@ if ( p.second )
|
|||||||
when a variable is declared as optional<T> and no initial value is given,
|
when a variable is declared as optional<T> and no initial value is given,
|
||||||
the variable is formally uninitialized. A formally uninitialized optional object has conceptually
|
the variable is formally uninitialized. A formally uninitialized optional object has conceptually
|
||||||
no value at all and this situation can be tested at runtime. It is formally <i>undefined behaviour</i>
|
no value at all and this situation can be tested at runtime. It is formally <i>undefined behaviour</i>
|
||||||
to try to access the value of an uninitialized optional. An uninitialized optional can be <i>assigned</i> a value, in which case its initialization state changes to initialized. Furthermore, given the formal
|
to try to access the value of an uninitialized optional. An uninitialized optional can be <i>assigned</i> a value, in which case its initialization state changes to initialized. Furthermore, given the formal
|
||||||
treatment of initialization states in optional objects, it is even possible to reset an optional to <i>uninitialized</i>.</P>
|
treatment of initialization states in optional objects, it is even possible to reset an optional to <i>uninitialized</i>.</P>
|
||||||
<P>In C++ there is no formal notion of uninitialized objects, which
|
<P>In C++ there is no formal notion of uninitialized objects, which
|
||||||
means that objects always have an initial value even if indeterminate.<br>
|
means that objects always have an initial value even if indeterminate.<br>
|
||||||
@ -114,7 +114,7 @@ if ( p.second )
|
|||||||
information to tell if an object has been effectively initialized.<br>
|
information to tell if an object has been effectively initialized.<br>
|
||||||
One of the typical ways in which this has been historically
|
One of the typical ways in which this has been historically
|
||||||
dealt with is via a special value: EOF,npos,-1, etc... This is equivalent to adding
|
dealt with is via a special value: EOF,npos,-1, etc... This is equivalent to adding
|
||||||
the special value to the set of possible values of a given type. This super set of
|
the special value to the set of possible values of a given type. This super set of
|
||||||
T plus some <i>nil_t</i>—were nil_t is some stateless POD-can be modeled in modern
|
T plus some <i>nil_t</i>—were nil_t is some stateless POD-can be modeled in modern
|
||||||
languages as a <b>discriminated union</b> of <code>T</code> and <code>nil_t</code>.
|
languages as a <b>discriminated union</b> of <code>T</code> and <code>nil_t</code>.
|
||||||
Discriminated unions are often called <i>variants</i>. A variant has a <i>current type</i>,
|
Discriminated unions are often called <i>variants</i>. A variant has a <i>current type</i>,
|
||||||
@ -128,13 +128,13 @@ if ( p.second )
|
|||||||
the range of possible values adding an additional sentinel value with the special meaning of <i>Nothing. </i>
|
the range of possible values adding an additional sentinel value with the special meaning of <i>Nothing. </i>
|
||||||
However, this additional <i>Nothing</i> value is largely irrelevant for our purpose
|
However, this additional <i>Nothing</i> value is largely irrelevant for our purpose
|
||||||
since our goal is to formalize the notion of uninitialized objects and, while a special extended value <i>can</i> be used to convey that meaning, it is not strictly neccesary in order to do so.</p>
|
since our goal is to formalize the notion of uninitialized objects and, while a special extended value <i>can</i> be used to convey that meaning, it is not strictly neccesary in order to do so.</p>
|
||||||
<p>The observation made in the last paragraph about the irrelevant nature of the additional <code>nil_t</code> with respect to
|
<p>The observation made in the last paragraph about the irrelevant nature of the additional <code>nil_t</code> with respect to
|
||||||
<u>purpose</u> of optional<T> suggests
|
<u>purpose</u> of optional<T> suggests
|
||||||
an alternative model: a <i>container</i> that either has a value of T or nothing.
|
an alternative model: a <i>container</i> that either has a value of T or nothing.
|
||||||
</p>
|
</p>
|
||||||
<p>As of this writting I don't know of any precedence for a variable-size fixed-capacity (of 1)
|
<p>As of this writting I don't know of any precedence for a variable-size fixed-capacity (of 1)
|
||||||
stack-based container model for optional values, yet I believe this is the consequence of
|
stack-based container model for optional values, yet I believe this is the consequence of
|
||||||
the lack of practical implementations of such a container rather than an inherent shortcoming
|
the lack of practical implementations of such a container rather than an inherent shortcoming
|
||||||
of the container model.</p>
|
of the container model.</p>
|
||||||
<p>In any event, both the discriminated-union or the single-element container models serve as a conceptual
|
<p>In any event, both the discriminated-union or the single-element container models serve as a conceptual
|
||||||
ground for a class representing optional—i.e. possibly uninitialized—objects.<br>
|
ground for a class representing optional—i.e. possibly uninitialized—objects.<br>
|
||||||
@ -174,71 +174,71 @@ conceptually wrong but also impractical: it is not allowed to derive from a non-
|
|||||||
<p>We can draw from the purpose of optional<T> the required basic semantics:</p>
|
<p>We can draw from the purpose of optional<T> the required basic semantics:</p>
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Default Construction:</b> To introduce a formally uninitialized wrapped
|
<p><b>Default Construction:</b> To introduce a formally uninitialized wrapped
|
||||||
object.</p>
|
object.</p>
|
||||||
|
|
||||||
<p><b>Direct Value Construction via copy:</b> To introduce a formally
|
<p><b>Direct Value Construction via copy:</b> To introduce a formally
|
||||||
initialized wrapped object whose value is obtained as a copy of some object.</p>
|
initialized wrapped object whose value is obtained as a copy of some object.</p>
|
||||||
|
|
||||||
<p><b>Deep Copy Construction:</b> To obtain a different yet equivalent wrapped
|
<p><b>Deep Copy Construction:</b> To obtain a different yet equivalent wrapped
|
||||||
object.</p>
|
object.</p>
|
||||||
|
|
||||||
<p><b>Direct Value Assignment (upon initialized):</b> To assign the wrapped object a value obtained
|
<p><b>Direct Value Assignment (upon initialized):</b> To assign the wrapped object a value obtained
|
||||||
as a copy of some object.</p>
|
as a copy of some object.</p>
|
||||||
|
|
||||||
<p><b>Direct Value Assignment (upon uninitialized):</b> To initialize the wrapped object
|
<p><b>Direct Value Assignment (upon uninitialized):</b> To initialize the wrapped object
|
||||||
with a value obtained
|
with a value obtained
|
||||||
as a copy of some object.</p>
|
as a copy of some object.</p>
|
||||||
|
|
||||||
<p><b>Assignnment (upon initialized):</b> To assign the wrapped object a value obtained as a copy
|
<p><b>Assignnment (upon initialized):</b> To assign the wrapped object a value obtained as a copy
|
||||||
of another wrapper's object.</p>
|
of another wrapper's object.</p>
|
||||||
|
|
||||||
<p><b>Assignnment (upon uninitialized):</b> To initialize the wrapped object
|
<p><b>Assignnment (upon uninitialized):</b> To initialize the wrapped object
|
||||||
with value obtained as a copy
|
with value obtained as a copy
|
||||||
of another wrapper's object.</p>
|
of another wrapper's object.</p>
|
||||||
|
|
||||||
<p><b>Deep Relational Operations (when supported by the type T):</b> To compare
|
<p><b>Deep Relational Operations (when supported by the type T):</b> To compare
|
||||||
wrapped object values taking into account the presence of uninitialized
|
wrapped object values taking into account the presence of uninitialized
|
||||||
operands.</p>
|
operands.</p>
|
||||||
|
|
||||||
<p><b>Value access:</b> To unwrap the wrapped object.</p>
|
<p><b>Value access:</b> To unwrap the wrapped object.</p>
|
||||||
|
|
||||||
<p><b>Initialization state query:</b> To determine if the object is formally
|
<p><b>Initialization state query:</b> To determine if the object is formally
|
||||||
initialized or not.</p>
|
initialized or not.</p>
|
||||||
|
|
||||||
<p><b>Swap:</b> To exchange wrapper's objects. (with whatever exception safety
|
<p><b>Swap:</b> To exchange wrapper's objects. (with whatever exception safety
|
||||||
guarantiees are provided by T's swap).</p>
|
guarantiees are provided by T's swap).</p>
|
||||||
|
|
||||||
<p><b>De-initialization:</b> To release the wrapped object (if any) and leave
|
<p><b>De-initialization:</b> To release the wrapped object (if any) and leave
|
||||||
the wrapper in the uninitialized state.</p>
|
the wrapper in the uninitialized state.</p>
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<p>Additional operations are useful, such as converting constructors and
|
<p>Additional operations are useful, such as converting constructors and
|
||||||
converting assignments, in-place construction and assignment, and safe value
|
converting assignments, in-place construction and assignment, and safe value
|
||||||
access via a pointer to the wrapped object or null.</p>
|
access via a pointer to the wrapped object or null.</p>
|
||||||
<h3><u>The Interface:</u></h3>
|
<h3><u>The Interface:</u></h3>
|
||||||
<p>Since the purpose of optional is to allow us to use objects with a formal
|
<p>Since the purpose of optional is to allow us to use objects with a formal
|
||||||
uninitialized additional state, the interface could try to follow the interface
|
uninitialized additional state, the interface could try to follow the interface
|
||||||
of the underlying T type as much as possible. In order to choose the proper
|
of the underlying T type as much as possible. In order to choose the proper
|
||||||
degree of adoption of the native T interface, the following must be noted: <br>
|
degree of adoption of the native T interface, the following must be noted: <br>
|
||||||
Even if all the operations supported by an instance of type T are defined for
|
Even if all the operations supported by an instance of type T are defined for
|
||||||
the entire range of values for such a type, an optional<T> extends such a set of
|
the entire range of values for such a type, an optional<T> extends such a set of
|
||||||
values with a new value for which most (otherwise valid) operations are not
|
values with a new value for which most (otherwise valid) operations are not
|
||||||
defined in terms of T.<br>
|
defined in terms of T.<br>
|
||||||
Furthermore, since optional<T> itself is merely a T wrapper (modeling a T
|
Furthermore, since optional<T> itself is merely a T wrapper (modeling a T
|
||||||
supertype), any attempt to define such operations upon uninitialized optionals
|
supertype), any attempt to define such operations upon uninitialized optionals
|
||||||
will be totally artificial w.r.t. T.<br>
|
will be totally artificial w.r.t. T.<br>
|
||||||
This library chooses an interface which follows from T's interface only for
|
This library chooses an interface which follows from T's interface only for
|
||||||
those operations which are well defined (w.r.t the type T) even if any of the
|
those operations which are well defined (w.r.t the type T) even if any of the
|
||||||
operands are uninitialized. These operations include: construction,
|
operands are uninitialized. These operations include: construction,
|
||||||
copy-construction, assignment, swap and relational operations.<br>
|
copy-construction, assignment, swap and relational operations.<br>
|
||||||
For the value access operations, which are undefined (w.r.t the type T) when the
|
For the value access operations, which are undefined (w.r.t the type T) when the
|
||||||
operand is uninitialized, a different interface is choosen (which will be
|
operand is uninitialized, a different interface is choosen (which will be
|
||||||
explained next).<br>
|
explained next).<br>
|
||||||
Also, the presence of the possibly uninitialized state requires additional
|
Also, the presence of the possibly uninitialized state requires additional
|
||||||
operations not provided by T itself which are supported by a special interface.</p>
|
operations not provided by T itself which are supported by a special interface.</p>
|
||||||
<h3>Lexically-hinted Value Access in the presence of possibly untitialized
|
<h3>Lexically-hinted Value Access in the presence of possibly untitialized
|
||||||
optional objects: The operators * and -></h3>
|
optional objects: The operators * and -></h3>
|
||||||
<p>A relevant feature of a pointer is that it can have a <b>null
|
<p>A relevant feature of a pointer is that it can have a <b>null
|
||||||
pointer value</b>. This is a <i>special</i> value which is used to indicate that the
|
pointer value</b>. This is a <i>special</i> value which is used to indicate that the
|
||||||
@ -248,7 +248,7 @@ optional objects: The operators * and -></h3>
|
|||||||
for handling optional objects because all you have to do to refer to a value which you
|
for handling optional objects because all you have to do to refer to a value which you
|
||||||
don't really have is to use a null pointer value of the appropriate type.
|
don't really have is to use a null pointer value of the appropriate type.
|
||||||
Pointers have been used for decades—from the days of C APIs to modern C++ libraries—to
|
Pointers have been used for decades—from the days of C APIs to modern C++ libraries—to
|
||||||
<i>refer</i> to optional (that is, possibly inexistent) objects; particularly
|
<i>refer</i> to optional (that is, possibly inexistent) objects; particularly
|
||||||
as optional arguments to a function, but also quite often as optional data members.</P>
|
as optional arguments to a function, but also quite often as optional data members.</P>
|
||||||
<P>The possible presence of a null pointer value makes the operations that access the
|
<P>The possible presence of a null pointer value makes the operations that access the
|
||||||
pointee's value possibly undefined, therefore, expressions which use dereference
|
pointee's value possibly undefined, therefore, expressions which use dereference
|
||||||
@ -282,10 +282,10 @@ them. The problem resides in the shallow-copy of pointer semantics: if you need
|
|||||||
concept incarnated by pointers.
|
concept incarnated by pointers.
|
||||||
</p>
|
</p>
|
||||||
<h4>Optional<T> as a model of OptionalPointee</h4>
|
<h4>Optional<T> as a model of OptionalPointee</h4>
|
||||||
<P>For value access operations optional<> uses operators * and -> to lexically
|
<P>For value access operations optional<> uses operators * and -> to lexically
|
||||||
warn about the possibliy uninitialized state appealing to the familiar pointer
|
warn about the possibliy uninitialized state appealing to the familiar pointer
|
||||||
semantics w.r.t. to null pointers.<br>
|
semantics w.r.t. to null pointers.<br>
|
||||||
<u><b>However, it is particularly important to note that optional<> objects are not pointers. optional<>
|
<u><b>However, it is particularly important to note that optional<> objects are not pointers. optional<>
|
||||||
is not, and does not model, a pointer</b></u><b>.</b>
|
is not, and does not model, a pointer</b></u><b>.</b>
|
||||||
<P>For instance, optional<> has not shallow-copy so does not alias: two different optionals
|
<P>For instance, optional<> has not shallow-copy so does not alias: two different optionals
|
||||||
never refer to the <i>same</i> value unless T itself is an reference (but my have <i>equivalent</i> values).<br>
|
never refer to the <i>same</i> value unless T itself is an reference (but my have <i>equivalent</i> values).<br>
|
||||||
@ -296,7 +296,7 @@ is not, and does not model, a pointer</b></u><b>.</b>
|
|||||||
As a result, you might be able to replace optional<T> by T* on some situations but
|
As a result, you might be able to replace optional<T> by T* on some situations but
|
||||||
not always. Specifically, on generic code written for both, you cannot use relational
|
not always. Specifically, on generic code written for both, you cannot use relational
|
||||||
operators directly, and must use the template functions
|
operators directly, and must use the template functions
|
||||||
<a href="../../utility/OptionalPointee.html#equal">equal_pointees()</a> and
|
<a href="../../utility/OptionalPointee.html#equal">equal_pointees()</a> and
|
||||||
<a href="../../utility/OptionalPointee.html#less">less_pointees()</a> instead.
|
<a href="../../utility/OptionalPointee.html#less">less_pointees()</a> instead.
|
||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
@ -315,30 +315,30 @@ class optional
|
|||||||
|
|
||||||
optional ( detail::none_t ) ;
|
optional ( detail::none_t ) ;
|
||||||
|
|
||||||
optional ( T const& v ) ;
|
optional ( T const& v ) ;
|
||||||
|
|
||||||
optional ( optional const& rhs ) ;
|
optional ( optional const& rhs ) ;
|
||||||
|
|
||||||
template<class U> explicit optional ( optional<U> const& rhs ) ;
|
template<class U> explicit optional ( optional<U> const& rhs ) ;
|
||||||
|
|
||||||
template<class InPlaceFactory> explicit optional ( InPlaceFactory const& f ) ;
|
template<class InPlaceFactory> explicit optional ( InPlaceFactory const& f ) ;
|
||||||
|
|
||||||
template<class TypedInPlaceFactory> explicit optional ( TypedInPlaceFactory const& f ) ;
|
template<class TypedInPlaceFactory> explicit optional ( TypedInPlaceFactory const& f ) ;
|
||||||
|
|
||||||
optional& operator = ( detail::none_t ) ;
|
optional& operator = ( detail::none_t ) ;
|
||||||
|
|
||||||
optional& operator = ( T const& v ) ;
|
optional& operator = ( T const& v ) ;
|
||||||
|
|
||||||
optional& operator = ( optional const& rhs ) ;
|
optional& operator = ( optional const& rhs ) ;
|
||||||
|
|
||||||
template<class U> optional& operator = ( optional<U> const& rhs ) ;
|
template<class U> optional& operator = ( optional<U> const& rhs ) ;
|
||||||
|
|
||||||
template<class InPlaceFactory> optional& operator = ( InPlaceFactory const& f ) ;
|
template<class InPlaceFactory> optional& operator = ( InPlaceFactory const& f ) ;
|
||||||
|
|
||||||
template<class TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const& f ) ;
|
template<class TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const& f ) ;
|
||||||
|
|
||||||
T const& get() const ;
|
T const& get() const ;
|
||||||
T& get() ;
|
T& get() ;
|
||||||
|
|
||||||
T const* operator ->() const ;
|
T const* operator ->() const ;
|
||||||
T* operator ->() ;
|
T* operator ->() ;
|
||||||
@ -352,9 +352,9 @@ class optional
|
|||||||
operator <i>unspecified-bool-type</i>() const ;
|
operator <i>unspecified-bool-type</i>() const ;
|
||||||
|
|
||||||
bool operator!() const ;
|
bool operator!() const ;
|
||||||
|
|
||||||
<i><u>deprecated methods</u></i>
|
<i><u>deprecated methods</u></i>
|
||||||
|
|
||||||
void reset() ; (deprecated)
|
void reset() ; (deprecated)
|
||||||
void reset ( T const& ) ; (deprecated)
|
void reset ( T const& ) ; (deprecated)
|
||||||
bool is_initialized() const ; (deprecated)
|
bool is_initialized() const ; (deprecated)
|
||||||
@ -396,18 +396,18 @@ template<class T> inline void swap( optional<T>& x, optional<T>
|
|||||||
|
|
||||||
<p><b><u>NOTES: </u></b></p>
|
<p><b><u>NOTES: </u></b></p>
|
||||||
|
|
||||||
<p><b>Because T might be of reference type, in the sequel, those entries whose
|
<p><b>Because T might be of reference type, in the sequel, those entries whose
|
||||||
semantic depends on T being of reference type or not will be distinguished using
|
semantic depends on T being of reference type or not will be distinguished using
|
||||||
the following convention:<br>
|
the following convention:<br>
|
||||||
If the entry reads: optional<T (not a ref)>, the description corresponds only to
|
If the entry reads: optional<T (not a ref)>, the description corresponds only to
|
||||||
the case where T is not of reference type.<br>
|
the case where T is not of reference type.<br>
|
||||||
If the entry reads: optional<T&>, the description corresponds only to the case
|
If the entry reads: optional<T&>, the description corresponds only to the case
|
||||||
where T is of reference type. <br>
|
where T is of reference type. <br>
|
||||||
If the entry reads: optional<T>, the description is the same for both cases.</b></p>
|
If the entry reads: optional<T>, the description is the same for both cases.</b></p>
|
||||||
|
|
||||||
<p><i>The following section contains various assert() which are used only to
|
<p><i>The following section contains various assert() which are used only to
|
||||||
show the postconditions as sample code. It is not implied that the type T must
|
show the postconditions as sample code. It is not implied that the type T must
|
||||||
support each particular expression but that if the expression is supported, the
|
support each particular expression but that if the expression is supported, the
|
||||||
implied condition holds.</i></p>
|
implied condition holds.</i></p>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
@ -435,8 +435,8 @@ assert ( !def ) ;</pre>
|
|||||||
<p><b>Notes:</b></p>
|
<p><b>Notes:</b></p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>T's default constructor <u><i>is not</i></u> called.<br>
|
<p>T's default constructor <u><i>is not</i></u> called.<br>
|
||||||
The
|
The
|
||||||
expression <code>boost::none</code> denotes an instance of <code>boost::detail::none_t</code> that can be
|
expression <code>boost::none</code> denotes an instance of <code>boost::detail::none_t</code> that can be
|
||||||
used as the parameter.</p>
|
used as the parameter.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p><b>Example:</b></p>
|
<p><b>Example:</b></p>
|
||||||
@ -471,7 +471,7 @@ assert ( *opt == v ) ;</pre>
|
|||||||
<pre>optional<T&>::optional( T ref )</pre>
|
<pre>optional<T&>::optional( T ref )</pre>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Effect:</b> Directly-Constructs an <b>optional</b>.</p>
|
<p><b>Effect:</b> Directly-Constructs an <b>optional</b>.</p>
|
||||||
<p><b>Postconditions:</b> <b>*this</b> is <u>initialized</u> and its value is an
|
<p><b>Postconditions:</b> <b>*this</b> is <u>initialized</u> and its value is an
|
||||||
instance of an internal type wrapping the reference 'ref'.</p>
|
instance of an internal type wrapping the reference 'ref'.</p>
|
||||||
<p><b>Throws:</b> Nothing.</p>
|
<p><b>Throws:</b> Nothing.</p>
|
||||||
<p><b>Example:</b></p>
|
<p><b>Example:</b></p>
|
||||||
@ -525,8 +525,8 @@ assert ( init2 == init ) ;
|
|||||||
and its value is a <i>copy</i> of the internal wrapper holding the references in <b>rhs</b>; else <b>*this</b>
|
and its value is a <i>copy</i> of the internal wrapper holding the references in <b>rhs</b>; else <b>*this</b>
|
||||||
is uninitialized.</p>
|
is uninitialized.</p>
|
||||||
<p><b>Throws:</b> Nothing.</p>
|
<p><b>Throws:</b> Nothing.</p>
|
||||||
<p><b>Notes:</b> If <b>rhs</b> is initialized, the internal wrapper will be
|
<p><b>Notes:</b> If <b>rhs</b> is initialized, the internal wrapper will be
|
||||||
copied and just like true references, both <b>*this</b> and <b>rhs</b> will
|
copied and just like true references, both <b>*this</b> and <b>rhs</b> will
|
||||||
referr to the same object<b> </b>(will alias).</p>
|
referr to the same object<b> </b>(will alias).</p>
|
||||||
<p><b>Example:</b></p>
|
<p><b>Example:</b></p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
@ -581,13 +581,13 @@ assert( *y == 123 ) ;
|
|||||||
|
|
||||||
<pre>template<<i>TypedInPlaceFactory</i>> explicit optional<T <i>(not a ref)</i>>::optional( <i>TypedInPlaceFactory</i> const& f );</pre>
|
<pre>template<<i>TypedInPlaceFactory</i>> explicit optional<T <i>(not a ref)</i>>::optional( <i>TypedInPlaceFactory</i> const& f );</pre>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Effect:</b> Constructs an <b>optional</b> with a value of T obtained from
|
<p><b>Effect:</b> Constructs an <b>optional</b> with a value of T obtained from
|
||||||
the factory.</p>
|
the factory.</p>
|
||||||
<p><b>Postconditions:</b> <b>*this</b> is <u>initialized</u> and its value is
|
<p><b>Postconditions:</b> <b>*this</b> is <u>initialized</u> and its value is
|
||||||
<i>directly given</i> from the factory 'f' (i.e, the value<u> is not copied</u>).</p>
|
<i>directly given</i> from the factory 'f' (i.e, the value<u> is not copied</u>).</p>
|
||||||
<p><b>Throws:</b> Whatever the T constructor called by the factory throws.</p>
|
<p><b>Throws:</b> Whatever the T constructor called by the factory throws.</p>
|
||||||
<p><b>Notes:</b> See <A HREF="#inplace">In-Place Factories</A></p>
|
<p><b>Notes:</b> See <A HREF="#inplace">In-Place Factories</A></p>
|
||||||
<p><b>Exception Safety:</b> Exceptions can only be thrown during the call to the
|
<p><b>Exception Safety:</b> Exceptions can only be thrown during the call to the
|
||||||
T constructor used by the factory;
|
T constructor used by the factory;
|
||||||
in that case, this constructor has no effect.
|
in that case, this constructor has no effect.
|
||||||
</p>
|
</p>
|
||||||
@ -863,7 +863,7 @@ assert ( !!opt ) ;
|
|||||||
|
|
||||||
<pre>bool optional<T>::is_initialized() const ;</pre>
|
<pre>bool optional<T>::is_initialized() const ;</pre>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Returns:</b> <i>true</i> is the <b>optional</b> is initialized, <i>false</i>
|
<p><b>Returns:</b> <i>true</i> is the <b>optional</b> is initialized, <i>false</i>
|
||||||
otherwise.</p>
|
otherwise.</p>
|
||||||
<p><b>Throws:</b> Nothing.</p>
|
<p><b>Throws:</b> Nothing.</p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
@ -921,7 +921,7 @@ assert ( optX != optZ ) ;
|
|||||||
|
|
||||||
<pre>bool operator < ( optional<T> const& x, optional<T> const& y );</pre>
|
<pre>bool operator < ( optional<T> const& x, optional<T> const& y );</pre>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Returns:</b> If <b>y</b> is not initialized, <code>false</code>.
|
<p><b>Returns:</b> If <b>y</b> is not initialized, <code>false</code>.
|
||||||
If <b>y</b> is initialized and <b>x</b> is not initialized, <code>true</code>.
|
If <b>y</b> is initialized and <b>x</b> is not initialized, <code>true</code>.
|
||||||
If both <b>x</b> and <b>y</b> are initialized, <code>(*x < *y)</code>.
|
If both <b>x</b> and <b>y</b> are initialized, <code>(*x < *y)</code>.
|
||||||
</p>
|
</p>
|
||||||
@ -991,8 +991,8 @@ assert ( optX != optZ ) ;
|
|||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<pre>void swap ( optional<T>& x, optional<T>& y );</pre>
|
<pre>void swap ( optional<T>& x, optional<T>& y );</pre>
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p><b>Effect:</b> If both <b>x</b> and <b>y</b> are initialized, calls <code>swap(*x,*y)</code>
|
<p><b>Effect:</b> If both <b>x</b> and <b>y</b> are initialized, calls <code>swap(*x,*y)</code>
|
||||||
using std::swap.<br>
|
using std::swap.<br>
|
||||||
If only one is initialized, say x, calls: <code>y.reset(*x); x.reset();</code><br>
|
If only one is initialized, say x, calls: <code>y.reset(*x); x.reset();</code><br>
|
||||||
@ -1105,7 +1105,7 @@ else print("employer's name not found!");
|
|||||||
|
|
||||||
};
|
};
|
||||||
</pre>
|
</pre>
|
||||||
<h3>Bypassing expensive unnecesary default construction</h3>
|
<h3>Bypassing expensive unnecesary default construction</h3>
|
||||||
<pre>class ExpensiveCtor { ... } ;
|
<pre>class ExpensiveCtor { ... } ;
|
||||||
class Fred
|
class Fred
|
||||||
{
|
{
|
||||||
@ -1118,10 +1118,10 @@ class Fred
|
|||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<H2><A NAME="ref">Optional references</A></H2>
|
<H2><A NAME="ref">Optional references</A></H2>
|
||||||
<p>This library allow the template parameter T to be of reference type: T&, and
|
<p>This library allow the template parameter T to be of reference type: T&, and
|
||||||
to some extent, T const&.</p>
|
to some extent, T const&.</p>
|
||||||
|
|
||||||
<p>However, since references are not real objects some restrictions apply and
|
<p>However, since references are not real objects some restrictions apply and
|
||||||
some operations are not available in this case:</p>
|
some operations are not available in this case:</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
@ -1131,13 +1131,13 @@ some operations are not available in this case:</p>
|
|||||||
<li>InPlace assignment</li>
|
<li>InPlace assignment</li>
|
||||||
<li>Value-access via pointer</li>
|
<li>Value-access via pointer</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Also, even though optional<T&> treats it wrapped pseudo-object much as a real
|
<p>Also, even though optional<T&> treats it wrapped pseudo-object much as a real
|
||||||
value, a true real reference is stored so aliasing will ocurr: </p>
|
value, a true real reference is stored so aliasing will ocurr: </p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Copies of optional<T&> will copy the references but all these references
|
<li>Copies of optional<T&> will copy the references but all these references
|
||||||
will nonetheless refeer to the same object.</li>
|
will nonetheless refeer to the same object.</li>
|
||||||
<li>Value-access will actually provide access to the referenced object rather
|
<li>Value-access will actually provide access to the referenced object rather
|
||||||
than the reference itself.</li>
|
than the reference itself.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@ -1145,52 +1145,52 @@ value, a true real reference is stored so aliasing will ocurr: </p>
|
|||||||
|
|
||||||
<H2><A NAME="inplace">In-Place Factories</A></H2>
|
<H2><A NAME="inplace">In-Place Factories</A></H2>
|
||||||
<p>
|
<p>
|
||||||
One of the typical problems with wrappers and containers is that their
|
One of the typical problems with wrappers and containers is that their
|
||||||
interfaces usually provide an operation to initialize or assign the contained
|
interfaces usually provide an operation to initialize or assign the contained
|
||||||
object as a copy of some other object. This not only requires the underlying
|
object as a copy of some other object. This not only requires the underlying
|
||||||
type to be <a href="../../utility/CopyConstructible.html">Copy Constructible</a>, but also requires the existence of a fully
|
type to be <a href="../../utility/CopyConstructible.html">Copy Constructible</a>, but also requires the existence of a fully
|
||||||
constructed object, often temporary, just to follow the copy from:</p>
|
constructed object, often temporary, just to follow the copy from:</p>
|
||||||
<pre>struct X
|
<pre>struct X
|
||||||
{
|
{
|
||||||
X ( int, std:::string ) ;
|
X ( int, std:::string ) ;
|
||||||
} ;</pre>
|
} ;</pre>
|
||||||
<pre>class W
|
<pre>class W
|
||||||
{
|
{
|
||||||
X wrapped_ ;
|
X wrapped_ ;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
W ( X const& x ) : wrapped_(x) {}
|
W ( X const& x ) : wrapped_(x) {}
|
||||||
} ;</pre>
|
} ;</pre>
|
||||||
<pre>void foo()
|
<pre>void foo()
|
||||||
{
|
{
|
||||||
// Temporary object created.
|
// Temporary object created.
|
||||||
W ( X(123,"hello") ) ;
|
W ( X(123,"hello") ) ;
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
<p>A solution to this problem is to support direct construction of the contained
|
<p>A solution to this problem is to support direct construction of the contained
|
||||||
object right in the container's storage.<br>
|
object right in the container's storage.<br>
|
||||||
In this shceme, the user only needs to supply the arguments to the constructor
|
In this shceme, the user only needs to supply the arguments to the constructor
|
||||||
to use in the wrapped object construction.</p>
|
to use in the wrapped object construction.</p>
|
||||||
<pre>class W
|
<pre>class W
|
||||||
{
|
{
|
||||||
X wrapped_ ;
|
X wrapped_ ;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
W ( X const& x ) : wrapped_(x) {}
|
W ( X const& x ) : wrapped_(x) {}
|
||||||
W ( int a0, std::string a1) : wrapped_(a0,a1) {}
|
W ( int a0, std::string a1) : wrapped_(a0,a1) {}
|
||||||
} ;</pre>
|
} ;</pre>
|
||||||
<pre>void foo()
|
<pre>void foo()
|
||||||
{
|
{
|
||||||
// Wrapped object constructed in-place
|
// Wrapped object constructed in-place
|
||||||
// No temporary created.
|
// No temporary created.
|
||||||
W (123,"hello") ;
|
W (123,"hello") ;
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
<p>A limitation of this method is that it doesn't scale well to wrapped objects with multiple
|
<p>A limitation of this method is that it doesn't scale well to wrapped objects with multiple
|
||||||
constructors nor to generic code were the constructor overloads are unknown.</p>
|
constructors nor to generic code were the constructor overloads are unknown.</p>
|
||||||
<p>The solution presented in this library is the familiy of <b>InPlaceFactories</b> and
|
<p>The solution presented in this library is the familiy of <b>InPlaceFactories</b> and
|
||||||
<b>TypedInPlaceFactories</b>.<br>
|
<b>TypedInPlaceFactories</b>.<br>
|
||||||
These factories are a family of classes which encapsulate an increasing number of arbitrary
|
These factories are a family of classes which encapsulate an increasing number of arbitrary
|
||||||
constructor parameters and supply a method to construct an object of a given type using those
|
constructor parameters and supply a method to construct an object of a given type using those
|
||||||
@ -1200,29 +1200,29 @@ parameters at an address specified by the user via placement new.</p>
|
|||||||
class TypedInPlaceFactory2
|
class TypedInPlaceFactory2
|
||||||
{
|
{
|
||||||
A0 m_a0 ; A1 m_a1 ;
|
A0 m_a0 ; A1 m_a1 ;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
TypedInPlaceFactory2( A0 const& a0, A1 const& a1 ) : m_a0(a0), m_a1(a1) {}
|
TypedInPlaceFactory2( A0 const& a0, A1 const& a1 ) : m_a0(a0), m_a1(a1) {}
|
||||||
|
|
||||||
void construct ( void* p ) { new (p) T(m_a0,m_a1) ; }
|
void construct ( void* p ) { new (p) T(m_a0,m_a1) ; }
|
||||||
} ;
|
} ;
|
||||||
</pre>
|
</pre>
|
||||||
<p>A wrapper class aware of this can use it as:</p>
|
<p>A wrapper class aware of this can use it as:</p>
|
||||||
<pre>class W
|
<pre>class W
|
||||||
{
|
{
|
||||||
X wrapped_ ;
|
X wrapped_ ;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
W ( X const& x ) : wrapped_(x) {}
|
W ( X const& x ) : wrapped_(x) {}
|
||||||
W ( TypedInPlaceFactory2 const& fac ) { fac.construct(&wrapped_) ; }
|
W ( TypedInPlaceFactory2 const& fac ) { fac.construct(&wrapped_) ; }
|
||||||
} ;</pre>
|
} ;</pre>
|
||||||
<pre>void foo()
|
<pre>void foo()
|
||||||
{
|
{
|
||||||
// Wrapped object constructed in-place via a TypedInPlaceFactory.
|
// Wrapped object constructed in-place via a TypedInPlaceFactory.
|
||||||
// No temporary created.
|
// No temporary created.
|
||||||
W ( TypedInPlaceFactory2<X,int,std::string&rt;(123,"hello")) ;
|
W ( TypedInPlaceFactory2<X,int,std::string&rt;(123,"hello")) ;
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
<p>The factories are divided in two groups:<ul>
|
<p>The factories are divided in two groups:<ul>
|
||||||
@ -1233,35 +1233,35 @@ public:
|
|||||||
<p></p>
|
<p></p>
|
||||||
<p>This library provides an overloaded set of helper template functions to construct these factories
|
<p>This library provides an overloaded set of helper template functions to construct these factories
|
||||||
without requiring unnecessary template parameters:</p>
|
without requiring unnecessary template parameters:</p>
|
||||||
<pre>template<class A0,...,class AN>
|
<pre>template<class A0,...,class AN>
|
||||||
InPlaceFactory<i>N </i><A0,...,AN> <b>in_place</b> ( A0 const& a0, ..., AN const& aN) ;
|
InPlaceFactory<i>N </i><A0,...,AN> <b>in_place</b> ( A0 const& a0, ..., AN const& aN) ;
|
||||||
|
|
||||||
template<class T,class A0,...,class AN>
|
template<class T,class A0,...,class AN>
|
||||||
TypedInPlaceFactory<i>N </i><T,A0,...,AN> <b>in_place</b> ( T const& a0, A0 const& a0, ..., AN const& aN) ;</pre>
|
TypedInPlaceFactory<i>N </i><T,A0,...,AN> <b>in_place</b> ( T const& a0, A0 const& a0, ..., AN const& aN) ;</pre>
|
||||||
|
|
||||||
<p>In-place factories can be used generically by the wrapper and user as follows:</p>
|
<p>In-place factories can be used generically by the wrapper and user as follows:</p>
|
||||||
<pre>class W
|
<pre>class W
|
||||||
{
|
{
|
||||||
X wrapped_ ;
|
X wrapped_ ;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
W ( X const& x ) : wrapped_(x) {}
|
W ( X const& x ) : wrapped_(x) {}
|
||||||
|
|
||||||
template<class InPlaceFactory></class>
|
template<class InPlaceFactory></class>
|
||||||
W ( InPlaceFactory const& fac ) { fac.template <X>construct(&wrapped_) ; }
|
W ( InPlaceFactory const& fac ) { fac.template <X>construct(&wrapped_) ; }
|
||||||
|
|
||||||
} ;</pre>
|
} ;</pre>
|
||||||
<pre>void foo()
|
<pre>void foo()
|
||||||
{
|
{
|
||||||
// Wrapped object constructed in-place via a InPlaceFactory.
|
// Wrapped object constructed in-place via a InPlaceFactory.
|
||||||
// No temporary created.
|
// No temporary created.
|
||||||
W ( in_place(123,"hello") ) ;
|
W ( in_place(123,"hello") ) ;
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
<p>The factories are implemented in the headers:
|
<p>The factories are implemented in the headers:
|
||||||
<a href="../../../boost/detail/in_place_factory.hpp">in_place_factory.hpp</a> and
|
<a href="../../../boost/utility/in_place_factory.hpp">in_place_factory.hpp</a> and
|
||||||
<a href="../../../boost/detail/typed_in_place_factory.hpp">typed_in_place_factory.hpp</a>
|
<a href="../../../boost/utility/typed_in_place_factory.hpp">typed_in_place_factory.hpp</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<HR>
|
<HR>
|
||||||
@ -1272,7 +1272,7 @@ public:
|
|||||||
the <i>maybe</i> state <u>represents a valid value</u>, unlike the corresponding state
|
the <i>maybe</i> state <u>represents a valid value</u>, unlike the corresponding state
|
||||||
of an uninitialized optional<bool>.<br>
|
of an uninitialized optional<bool>.<br>
|
||||||
It should be carefully considered if an optional bool instead of a tribool is really needed</p>
|
It should be carefully considered if an optional bool instead of a tribool is really needed</p>
|
||||||
<p>Second, optional<> provides an implicit conversion to bool. This conversion
|
<p>Second, optional<> provides an implicit conversion to bool. This conversion
|
||||||
refers to the initialization state and not to the contained value.<br>
|
refers to the initialization state and not to the contained value.<br>
|
||||||
Using optional<bool> can lead to subtle errors due to the implicit bool conversion:</p>
|
Using optional<bool> can lead to subtle errors due to the implicit bool conversion:</p>
|
||||||
<pre>void foo ( bool v ) ;
|
<pre>void foo ( bool v ) ;
|
||||||
@ -1291,7 +1291,7 @@ integral promotions don't apply (i.e. if foo() takes an 'int' instead, it won't
|
|||||||
|
|
||||||
<H2><A NAME="exsafety">Exception Safety Guarantees</A></H2>
|
<H2><A NAME="exsafety">Exception Safety Guarantees</A></H2>
|
||||||
<H3><u>Assignment and Reset:</u></H3>
|
<H3><u>Assignment and Reset:</u></H3>
|
||||||
<p>Because of the current implementation (see <A HREF="#impl">Implementation Notes</A>), all
|
<p>Because of the current implementation (see <A HREF="#impl">Implementation Notes</A>), all
|
||||||
of the assignment methods:</p>
|
of the assignment methods:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li> <code>optional<T>::operator= ( optional<T> const& ) </code>
|
<li> <code>optional<T>::operator= ( optional<T> const& ) </code>
|
||||||
@ -1299,9 +1299,9 @@ of the assignment methods:</p>
|
|||||||
<li> <code>optional<T>::operator= ( T const& ) </code></li>
|
<li> <code>optional<T>::operator= ( T const& ) </code></li>
|
||||||
<li> <code>template<class U> optional<T>::operator= ( optional<U> const& ) </code>
|
<li> <code>template<class U> optional<T>::operator= ( optional<U> const& ) </code>
|
||||||
</li>
|
</li>
|
||||||
<li> <code>template<class InPlaceFactory> optional<T>::operator= (
|
<li> <code>template<class InPlaceFactory> optional<T>::operator= (
|
||||||
InPlaceFactory const& ) </code></li>
|
InPlaceFactory const& ) </code></li>
|
||||||
<li> <code>template<class TypedInPlaceFactory> optional<T>::operator= (
|
<li> <code>template<class TypedInPlaceFactory> optional<T>::operator= (
|
||||||
TypedInPlaceFactory const& ) </code></li>
|
TypedInPlaceFactory const& ) </code></li>
|
||||||
<li> <code>optional<T>:::reset ( T const&)</code></li>
|
<li> <code>optional<T>:::reset ( T const&)</code></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -1363,7 +1363,7 @@ If none of the optionals is initialized, it has no-throw guarantee since it is a
|
|||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<H2><A NAME="requirements">Type requirements</A></H2>
|
<H2><A NAME="requirements">Type requirements</A></H2>
|
||||||
<p>In general, T must be <a href="../../utility/CopyConstructible.html">Copy Constructible</a> and have a no-throw destructor. The copy-constructible requirement is not needed
|
<p>In general, T must be <a href="../../utility/CopyConstructible.html">Copy Constructible</a> and have a no-throw destructor. The copy-constructible requirement is not needed
|
||||||
if InPlaceFactories are used.<br>
|
if InPlaceFactories are used.<br>
|
||||||
T <u>is not</u> required to be <a href="http://www.sgi.com/tech/stl/DefaultConstructible.html">Default Constructible</a> </p>
|
T <u>is not</u> required to be <a href="http://www.sgi.com/tech/stl/DefaultConstructible.html">Default Constructible</a> </p>
|
||||||
|
|
||||||
@ -1407,39 +1407,40 @@ T <u>is not</u> required to be <a href="http://www.sgi.com/tech/stl/DefaultConst
|
|||||||
Henney, David Abrahams, and others I can't recall. </p>
|
Henney, David Abrahams, and others I can't recall. </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p>Post-formal review:</p>
|
<p>Post-formal review:</p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>William Kempf carefully considered the originally proposed interface and
|
<p>William Kempf carefully considered the originally proposed interface and
|
||||||
suggested the new interface which is currently used. He also started and fueled
|
suggested the new interface which is currently used. He also started and fueled
|
||||||
the discussion about the analogy optional<>/smart pointer and about
|
the discussion about the analogy optional<>/smart pointer and about
|
||||||
relational operators.<br>
|
relational operators.<br>
|
||||||
Peter Dimov, Joel de Guzman, David Abrahams, Tanton Gibbs and Ian Hanson focused
|
Peter Dimov, Joel de Guzman, David Abrahams, Tanton Gibbs and Ian Hanson focused
|
||||||
on the relational semantics of optional (originally undefined); concluding
|
on the relational semantics of optional (originally undefined); concluding
|
||||||
with the fact that the pointer-like interface doesn't make it a pointer so
|
with the fact that the pointer-like interface doesn't make it a pointer so
|
||||||
it shall have deep relational operators.<br>
|
it shall have deep relational operators.<br>
|
||||||
Augustus Saunders also explored the different relational semantics between
|
Augustus Saunders also explored the different relational semantics between
|
||||||
optional<> and a pointer and developed the OptionalPointee concept as
|
optional<> and a pointer and developed the OptionalPointee concept as
|
||||||
an aid against potential conflicts on generic code.<br>
|
an aid against potential conflicts on generic code.<br>
|
||||||
Joel de Guzman noticed that optional<> can be seen as an API on top
|
Joel de Guzman noticed that optional<> can be seen as an API on top
|
||||||
of variant<T,nil_t>.<br>
|
of variant<T,nil_t>.<br>
|
||||||
Dave Gomboc explained the meaning and usage of the Haskell analog to optional<>:
|
Dave Gomboc explained the meaning and usage of the Haskell analog to optional<>:
|
||||||
the Maybe type constructor (analogy originally pointed out by David Sankel).<br>
|
the Maybe type constructor (analogy originally pointed out by David Sankel).<br>
|
||||||
Other comments were posted by Vincent Finn, Anthony Williams, Ed Brey, Rob
|
Other comments were posted by Vincent Finn, Anthony Williams, Ed Brey, Rob
|
||||||
Stewart, and others.<br>
|
Stewart, and others.<br>
|
||||||
Joel de Guzman made the case for the support of references and helped with
|
Joel de Guzman made the case for the support of references and helped with
|
||||||
the proper semantics.<br>
|
the proper semantics.<br>
|
||||||
Mat Marcus shown the virtues of a value-oriented interface, influencing the
|
Mat Marcus shown the virtues of a value-oriented interface, influencing the
|
||||||
current design, and contributed the idea of "none".</p>
|
current design, and contributed the idea of "none".</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<P>Revised Jannuary 30, 2004</P>
|
<P>Revised Jannuary 30, 2004</P>
|
||||||
<P>© Copyright boost.org 2003. Permission to copy, use, modify, sell and
|
<p><EFBFBD> Copyright Fernando Luis Cacciola Carballal, 2003,2004</p>
|
||||||
distribute this document is granted provided this copyright notice appears in
|
<p> Use, modification, and distribution are subject to the Boost Software
|
||||||
all copies. This document is provided "as is" without express or implied
|
License, Version 1.0. (See accompanying file <a href="../../../LICENSE_1_0.txt">
|
||||||
warranty, and with no claim as to its suitability for any purpose.</P>
|
LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">
|
||||||
|
www.boost.org/LICENSE_1_0.txt</a>)</p>
|
||||||
<P>Developed by <A HREF="mailto:fernando_cacciola@hotmail.com">Fernando Cacciola</A>,
|
<P>Developed by <A HREF="mailto:fernando_cacciola@hotmail.com">Fernando Cacciola</A>,
|
||||||
the latest version of this file can be found at <A
|
the latest version of this file can be found at <A
|
||||||
HREF="http://www.boost.org">www.boost.org</A>, and the boost
|
HREF="http://www.boost.org">www.boost.org</A>, and the boost
|
||||||
<A HREF="http://www.boost.org/more/mailing_lists.htm#main">discussion lists</A></P>
|
<A HREF="http://www.boost.org/more/mailing_lists.htm#main">discussion lists</A></P>
|
||||||
</BODY>
|
</BODY>
|
||||||
</HTML>
|
</HTML>
|
||||||
|
Reference in New Issue
Block a user