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

Method toList

src/attributes.cpp:63–69  ·  view source on GitHub ↗

convert to R list

Source from the content-addressed store, hash-verified

61
62 // convert to R list
63 List toList() const {
64 List fileInfo;
65 fileInfo["path"] = path_;
66 fileInfo["exists"] = exists_;
67 fileInfo["lastModified"] = lastModified_;
68 return fileInfo;
69 }
70
71 std::string path() const { return path_; }
72 bool exists() const { return exists_; }

Callers 2

toListMethod · 0.45
dynlibCacheInsertFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected