minor presentation tweaks

[SVN r36767]
This commit is contained in:
Joel de Guzman
2007-01-23 06:15:17 +00:00
parent 63c122f0d8
commit 469a4a2d7a
2 changed files with 5 additions and 4 deletions

View File

@ -116,7 +116,7 @@ Linear, exactly `__result_of_size__<Sequence>::value` applications of `f`.
struct make_string
{
template<typename T, typename State>
struct apply
struct result
{
typedef std::string type;
};
@ -172,7 +172,7 @@ Linear, exactly `__result_of_size__<Sequence>::value` applications of `f`.
struct make_string
{
template<typename T, typename State>
struct apply
struct result
{
typedef std::string type;
};
@ -1828,7 +1828,7 @@ Returns the result of type __transform__, given the sequence and __poly_func_obj
[*Return type]: A model of __forward_sequence__.
[*Semantics]: Returns a sequence with values `F::apply<E>::type` for each element type `E` in `Sequence`.
[*Semantics]: Returns a sequence with values `F::result<E>::type` for each element type `E` in `Sequence`.
[heading Complexity]
Constant.