1
0
forked from boostorg/mp11

Reword slightly

This commit is contained in:
Peter Dimov
2017-05-13 20:56:52 +03:00
parent de8b2ef76b
commit f840fdac5e

View File

@@ -191,10 +191,9 @@ for the elements of `L<U1...>` and `mp_false` for the elements of `L<U2...>`. Re
[section `mp_find<L, V>`]
template<class L, class V> using mp_find = /*...*/;
Returns the index at which type `V` is located in list `L`.
`mp_find<L, V>` is an alias for `mp_size_t<I>`, where `I` is the zero-based index of the first occurence of `V` in `L`. If
`L` does not contain `V`, `mp_find<L, V>` is `mp_size<L>`.
`mp_find<L, V>` returns the index at which the type `V` is located in the list `L`. It's an alias for `mp_size_t<I>`,
where `I` is the zero-based index of the first occurence of `V` in `L`. If `L` does not contain `V`, `mp_find<L, V>`
is `mp_size<L>`.
[endsect]
[section `mp_find_if<L, P>`]