mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-30 20:47:31 +02:00
[transform_view_ext] Updated docs
This commit is contained in:
@ -254,6 +254,7 @@ expressions must be valid:
|
|||||||
* __iterator_range__ iterator (where adapted iterators are __associative_iterator__\ s)
|
* __iterator_range__ iterator (where adapted iterators are __associative_iterator__\ s)
|
||||||
* __joint_view__ iterator (where adapted sequences are __associative_sequence__\ s and __forward_sequence__\ s)
|
* __joint_view__ iterator (where adapted sequences are __associative_sequence__\ s and __forward_sequence__\ s)
|
||||||
* __reverse_view__ iterator (where adapted sequence is an __associative_sequence__ and a __bidirectional_sequence__)
|
* __reverse_view__ iterator (where adapted sequence is an __associative_sequence__ and a __bidirectional_sequence__)
|
||||||
|
* __transform_view__ iterator (where adapted sequence is an __associative_sequence__ and a __forward_sequence__)
|
||||||
|
|
||||||
[endsect]
|
[endsect]
|
||||||
|
|
||||||
|
@ -360,6 +360,7 @@ you can use `__result_of_value_at_key__<S, K>`.]
|
|||||||
* __iterator_range__ (where adapted iterators are __associative_iterator__\ s)
|
* __iterator_range__ (where adapted iterators are __associative_iterator__\ s)
|
||||||
* __joint_view__ (where adapted sequences are __associative_sequence__\ s and __forward_sequence__\ s)
|
* __joint_view__ (where adapted sequences are __associative_sequence__\ s and __forward_sequence__\ s)
|
||||||
* __reverse_view__ (where adapted sequence is an __associative_sequence__ and a __bidirectional_sequence__)
|
* __reverse_view__ (where adapted sequence is an __associative_sequence__ and a __bidirectional_sequence__)
|
||||||
|
* __transform_view__ (where adapted sequence is an __associative_sequence__ and a __forward_sequence__)
|
||||||
|
|
||||||
[endsect]
|
[endsect]
|
||||||
|
|
||||||
|
15
doc/view.qbk
15
doc/view.qbk
@ -328,9 +328,7 @@ defined in __forward_sequence__.
|
|||||||
The unary version of `transform_view` presents a view of its underlying
|
The unary version of `transform_view` presents a view of its underlying
|
||||||
sequence given a unary function object or function pointer. The binary
|
sequence given a unary function object or function pointer. The binary
|
||||||
version of `transform_view` presents a view of 2 underlying sequences,
|
version of `transform_view` presents a view of 2 underlying sequences,
|
||||||
given a binary function object or function pointer. The `transform_view`
|
given a binary function object or function pointer.
|
||||||
inherits the traversal characteristics (see __traversal_concept__) of
|
|
||||||
its underlying sequence or sequences.
|
|
||||||
|
|
||||||
[heading Header]
|
[heading Header]
|
||||||
|
|
||||||
@ -362,9 +360,10 @@ its underlying sequence or sequences.
|
|||||||
|
|
||||||
[heading Model of]
|
[heading Model of]
|
||||||
|
|
||||||
* __forward_sequence__, __bidirectional_sequence__ or
|
* A model of __forward_sequence__ if `Sequence` is a __forward_sequence__
|
||||||
__random_access_sequence__ depending on the traversal characteristics (see
|
else, __bidirectional_sequence__ if `Sequence` is a __bidirectional_sequence__
|
||||||
__traversal_concept__) of its underlying sequence.
|
else, __random_access_sequence__ if `Sequence` is a __random_access_sequence__.
|
||||||
|
* __associative_sequence__ if `Sequence` implements the __associative_sequence__ model.
|
||||||
|
|
||||||
[variablelist Notation
|
[variablelist Notation
|
||||||
[[`TV`] [A `transform_view` type]]
|
[[`TV`] [A `transform_view` type]]
|
||||||
@ -381,9 +380,7 @@ __traversal_concept__) of its underlying sequence.
|
|||||||
[heading Expression Semantics]
|
[heading Expression Semantics]
|
||||||
|
|
||||||
Semantics of an expression is defined only where it differs from, or is not
|
Semantics of an expression is defined only where it differs from, or is not
|
||||||
defined in __forward_sequence__, __bidirectional_sequence__ or
|
defined in the implemented models.
|
||||||
__random_access_sequence__ depending on the traversal characteristics (see
|
|
||||||
__traversal_concept__) of its underlying sequence or sequences.
|
|
||||||
|
|
||||||
[table
|
[table
|
||||||
[[Expression] [Semantics]]
|
[[Expression] [Semantics]]
|
||||||
|
Reference in New Issue
Block a user