@@ -28,7 +28,7 @@ namespace common {
28
28
* @tparam R Integer range type
29
29
* @tparam TIndex Type of the integers
30
30
* @param sizes Range of integers
31
- * @return Eigen::Vector<TIndex, Eigen::Dynamic> Cumulative sum of the range
31
+ * @return Cumulative sum of the range
32
32
*/
33
33
template <CIndexRange R, std::integral TIndex = std::ranges::range_value_t <R>>
34
34
auto CumSum (R&& sizes) -> Eigen::Vector<TIndex, Eigen::Dynamic>
@@ -51,7 +51,7 @@ auto CumSum(R&& sizes) -> Eigen::Vector<TIndex, Eigen::Dynamic>
51
51
* @param begin Range begin
52
52
* @param end Range end (exclusive)
53
53
* @param ncounts Upper bound on values in range
54
- * @return Eigen::Vector<TIndex, Eigen::Dynamic> Counts of each integer in the range
54
+ * @return Counts of each integer in the range
55
55
*/
56
56
template <std::integral TIndex>
57
57
auto Counts (auto begin, auto end, TIndex ncounts) -> Eigen::Vector<TIndex, Eigen::Dynamic>
@@ -70,7 +70,7 @@ auto Counts(auto begin, auto end, TIndex ncounts) -> Eigen::Vector<TIndex, Eigen
70
70
* @tparam TIndex Integer type of the range
71
71
* @param begin Start of the range (inclusive)
72
72
* @param end End of the range (exclusive)
73
- * @return Eigen::Vector<TIndex, Eigen::Dynamic> Shuffled range of integers
73
+ * @return Shuffled range of integers
74
74
*/
75
75
template <std::integral TIndex>
76
76
auto Shuffle (TIndex begin, TIndex end) -> Eigen::Vector<TIndex, Eigen::Dynamic>
@@ -94,7 +94,7 @@ auto Shuffle(TIndex begin, TIndex end) -> Eigen::Vector<TIndex, Eigen::Dynamic>
94
94
* @param begin Start of the range (inclusive)
95
95
* @param end End of the range (exclusive)
96
96
* @param f Predicate function to filter the range
97
- * @return Eigen::Vector<TIndex, Eigen::Dynamic> Filtered range of integers
97
+ * @return Filtered range of integers
98
98
*/
99
99
template <
100
100
std::integral TIndexB,
@@ -122,7 +122,7 @@ auto Filter(TIndexB begin, TIndexE end, Func&& f) -> Eigen::Vector<TIndex, Eigen
122
122
* @tparam TIndex Integer type of the repetition vector
123
123
* @param x Values to repeat
124
124
* @param r Repetition vector
125
- * @return Eigen::Vector<TScalar, Eigen::Dynamic> Vector with repeated elements
125
+ * @return Vector with repeated elements
126
126
*/
127
127
template <
128
128
class TDerivedX ,
0 commit comments