MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / create__dispatch

Method create__dispatch

inst/include/Rcpp/vector/Vector.h:1133–1138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1131private:
1132 template <typename... T>
1133 static Vector create__dispatch(traits::false_type, const T&... t){
1134 Vector res(sizeof...(T)) ;
1135 iterator it(res.begin());
1136 create_dispatch_impl(it, t...);
1137 return res;
1138 }
1139
1140 template <typename... T>
1141 static Vector create__dispatch( traits::true_type, const T&... t) {

Callers

nothing calls this directly

Calls 2

attrMethod · 0.80
beginMethod · 0.45

Tested by

no test coverage detected