diff --git a/doc/algorithm.qbk b/doc/algorithm.qbk index 3344d366..f47fce5c 100644 --- a/doc/algorithm.qbk +++ b/doc/algorithm.qbk @@ -1363,7 +1363,7 @@ Returns a new sequence, with all the elements of the original sequence, except t typename T, typename Sequence > - typename __result_of_remove__::type replace(Sequence const& seq); + typename __result_of_remove__::type remove(Sequence const& seq); [table Parameters [[Parameter][Requirement][Description]] @@ -1832,7 +1832,7 @@ Constant. Returns a view which is lazily evaluated. #include [heading Example] - assert(___pop_back__(__make_vector__(1,2,3)) == __make_vector__(1,2)); + assert(__pop_back__(__make_vector__(1,2,3)) == __make_vector__(1,2)); [endsect] diff --git a/doc/extension.qbk b/doc/extension.qbk index 96e5ef61..cbb61ce5 100644 --- a/doc/extension.qbk +++ b/doc/extension.qbk @@ -323,7 +323,7 @@ For our __random_access_sequence__ we will also need to implement `size_impl`, In order for `example_struct` to serve as an associative forward sequence, we need to adapt the traversal category of our sequence and our iterator accordingly and enable 3 intrinsic sequence lookup features, __at_key__, -__value_at_key__ and __has_key__. We also need to enable 3 iterator lookup +__result_of_value_at_key__ and __has_key__. We also need to enable 3 iterator lookup features, __result_of_key_of__, __result_of_value_of_data__ and __deref_data__. To implement `at_key_impl` we need to associate the `fields::name` and `fields::age`