| 991 | template<typename Scalar, int _Options, typename _StorageIndex> |
| 992 | template<typename InputIterators> |
| 993 | void SparseMatrix<Scalar,_Options,_StorageIndex>::setFromTriplets(const InputIterators& begin, const InputIterators& end) |
| 994 | { |
| 995 | internal::set_from_triplets<InputIterators, SparseMatrix<Scalar,_Options,_StorageIndex> >(begin, end, *this, internal::scalar_sum_op<Scalar,Scalar>()); |
| 996 | } |
| 997 | |
| 998 | /** The same as setFromTriplets but when duplicates are met the functor \a dup_func is applied: |
| 999 | * \code |
no outgoing calls
no test coverage detected