Fixing whitespace problems
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111762 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -9,9 +9,9 @@
|
||||
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator Iter, MoveConstructible T>
|
||||
// requires HasPlus<T, Iter::reference>
|
||||
// && HasAssign<T, HasPlus<T, Iter::reference>::result_type>
|
||||
// template <InputIterator Iter, MoveConstructible T>
|
||||
// requires HasPlus<T, Iter::reference>
|
||||
// && HasAssign<T, HasPlus<T, Iter::reference>::result_type>
|
||||
// T
|
||||
// accumulate(Iter first, Iter last, T init);
|
||||
|
||||
|
@@ -10,9 +10,9 @@
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator Iter, MoveConstructible T,
|
||||
// Callable<auto, const T&, Iter::reference> BinaryOperation>
|
||||
// requires HasAssign<T, BinaryOperation::result_type>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// Callable<auto, const T&, Iter::reference> BinaryOperation>
|
||||
// requires HasAssign<T, BinaryOperation::result_type>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// T
|
||||
// accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
|
||||
|
||||
|
@@ -10,12 +10,12 @@
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator InIter,
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter>
|
||||
// requires HasMinus<InIter::value_type, InIter::value_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter>
|
||||
// requires HasMinus<InIter::value_type, InIter::value_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// && OutputIterator<OutIter,
|
||||
// HasMinus<InIter::value_type, InIter::value_type>::result_type>
|
||||
// && MoveAssignable<InIter::value_type>
|
||||
// HasMinus<InIter::value_type, InIter::value_type>::result_type>
|
||||
// && MoveAssignable<InIter::value_type>
|
||||
// OutIter
|
||||
// adjacent_difference(InIter first, InIter last, OutIter result);
|
||||
|
||||
|
@@ -10,12 +10,12 @@
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator InIter,
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter,
|
||||
// Callable<auto, const InIter::value_type&, const InIter::value_type&> BinaryOperation>
|
||||
// requires Constructible<InIter::value_type, InIter::reference>
|
||||
// && OutputIterator<OutIter, BinaryOperation::result_type>
|
||||
// && MoveAssignable<InIter::value_type>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter,
|
||||
// Callable<auto, const InIter::value_type&, const InIter::value_type&> BinaryOperation>
|
||||
// requires Constructible<InIter::value_type, InIter::reference>
|
||||
// && OutputIterator<OutIter, BinaryOperation::result_type>
|
||||
// && MoveAssignable<InIter::value_type>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// OutIter
|
||||
// adjacent_difference(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
||||
|
||||
|
@@ -9,9 +9,9 @@
|
||||
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator Iter1, InputIterator Iter2, MoveConstructible T>
|
||||
// requires HasMultiply<Iter1::reference, Iter2::reference>
|
||||
// && HasPlus<T, HasMultiply<Iter1::reference, Iter2::reference>::result_type>
|
||||
// template <InputIterator Iter1, InputIterator Iter2, MoveConstructible T>
|
||||
// requires HasMultiply<Iter1::reference, Iter2::reference>
|
||||
// && HasPlus<T, HasMultiply<Iter1::reference, Iter2::reference>::result_type>
|
||||
// && HasAssign<T,
|
||||
// HasPlus<T,
|
||||
// HasMultiply<Iter1::reference,
|
||||
|
@@ -9,13 +9,13 @@
|
||||
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator Iter1, InputIterator Iter2, MoveConstructible T,
|
||||
// template <InputIterator Iter1, InputIterator Iter2, MoveConstructible T,
|
||||
// class BinaryOperation1,
|
||||
// Callable<auto, Iter1::reference, Iter2::reference> BinaryOperation2>
|
||||
// requires Callable<BinaryOperation1, const T&, BinaryOperation2::result_type>
|
||||
// && HasAssign<T, BinaryOperation1::result_type>
|
||||
// && CopyConstructible<BinaryOperation1>
|
||||
// && CopyConstructible<BinaryOperation2>
|
||||
// Callable<auto, Iter1::reference, Iter2::reference> BinaryOperation2>
|
||||
// requires Callable<BinaryOperation1, const T&, BinaryOperation2::result_type>
|
||||
// && HasAssign<T, BinaryOperation1::result_type>
|
||||
// && CopyConstructible<BinaryOperation1>
|
||||
// && CopyConstructible<BinaryOperation2>
|
||||
// T
|
||||
// inner_product(Iter1 first1, Iter1 last1, Iter2 first2,
|
||||
// T init, BinaryOperation1 binary_op1, BinaryOperation2 binary_op2);
|
||||
|
@@ -311,4 +311,4 @@ base(Iter i)
|
||||
return i;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // ITERATORS_H
|
||||
|
@@ -9,11 +9,11 @@
|
||||
|
||||
// <numeric>
|
||||
|
||||
// template <InputIterator InIter, OutputIterator<auto, const InIter::value_type&> OutIter>
|
||||
// requires HasPlus<InIter::value_type, InIter::reference>
|
||||
// template <InputIterator InIter, OutputIterator<auto, const InIter::value_type&> OutIter>
|
||||
// requires HasPlus<InIter::value_type, InIter::reference>
|
||||
// && HasAssign<InIter::value_type,
|
||||
// HasPlus<InIter::value_type, InIter::reference>::result_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// HasPlus<InIter::value_type, InIter::reference>::result_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// OutIter
|
||||
// partial_sum(InIter first, InIter last, OutIter result);
|
||||
|
||||
|
@@ -10,11 +10,11 @@
|
||||
// <numeric>
|
||||
|
||||
// template<InputIterator InIter,
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter,
|
||||
// Callable<auto, const InIter::value_type&, InIter::reference> BinaryOperation>
|
||||
// requires HasAssign<InIter::value_type, BinaryOperation::result_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// OutputIterator<auto, const InIter::value_type&> OutIter,
|
||||
// Callable<auto, const InIter::value_type&, InIter::reference> BinaryOperation>
|
||||
// requires HasAssign<InIter::value_type, BinaryOperation::result_type>
|
||||
// && Constructible<InIter::value_type, InIter::reference>
|
||||
// && CopyConstructible<BinaryOperation>
|
||||
// OutIter
|
||||
// partial_sum(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
||||
|
||||
|
Reference in New Issue
Block a user