We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112e47a commit a4a50deCopy full SHA for a4a50de
inst/NEWS.Rd
@@ -19,7 +19,7 @@
19
\itemize{
20
\item Added new Sugar function \code{median()} (Nathan in PR \ghpr{425}
21
closing \ghit{424})
22
- \item Added new Sugar function \code{cbind()} (Nathan in PR TBD
+ \item Added new Sugar function \code{cbind()} (Nathan in PR \ghpr{447}
23
closing \ghit{407})
24
}
25
\item Changes in Rcpp Attributes:
inst/include/Rcpp/sugar/functions/cbind.h
@@ -192,9 +192,7 @@ class JoinOp
192
193
inline R_xlen_t nrow() const { return e1.nrow(); }
194
195
- inline R_xlen_t ncol() const {
196
- return e1.ncol() + e2.ncol();
197
- }
+ inline R_xlen_t ncol() const { return e1.ncol() + e2.ncol(); }
198
199
inline stored_type operator[](R_xlen_t i) const {
200
return (i < e1.size()) ? e1[i] : e2[i - e1.size()];
0 commit comments