diff options
Diffstat (limited to '3rdparty/asio/src/doc/requirements/EndpointSequence.qbk')
-rw-r--r-- | 3rdparty/asio/src/doc/requirements/EndpointSequence.qbk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/3rdparty/asio/src/doc/requirements/EndpointSequence.qbk b/3rdparty/asio/src/doc/requirements/EndpointSequence.qbk new file mode 100644 index 00000000000..1e1648eb7a7 --- /dev/null +++ b/3rdparty/asio/src/doc/requirements/EndpointSequence.qbk @@ -0,0 +1,30 @@ +[/ + / Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / + / Distributed under the Boost Software License, Version 1.0. (See accompanying + / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + /] + +[section:EndpointSequence Endpoint sequence requirements] + +A type `X` meets the `EndpointSequence` requirements if it satisfies the +requirements of `Destructible` (C++Std [destructible]) and `CopyConstructible` +(C++Std [copyconstructible]), as well as the additional requirements listed +below. + +In the table below, `x` denotes a (possibly const) value of type `X`. + +[table EndpointSequence requirements + [[expression] [return type] [assertion/note\npre/post-condition]] + [ + [`x.begin()`\n + `x.end()`] + [A type meeting the requirements for forward iterators + (C++Std \[forward.iterators\]) whose value type is convertible to + a type satisfying the [link asio.reference.Endpoint `Endpoint`] + requirements.] + [[half_open_range `x.begin()`,`x.end()`] is a valid range.] + ] +] + +[endsect] |