We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 796828d commit 181957eCopy full SHA for 181957e
R/wrappers.R
@@ -17,4 +17,7 @@ isReallyReal = function(x) .Call(CisReallyReal, x)
17
18
coerceAs = function(x, as, copy=TRUE) .Call(CcoerceAs, x, as, copy)
19
20
-frev = function(x, copy=TRUE) if (isTRUE(copy)) .Call(Cfrev, x, copy) else invisible(.Call(Cfrev, x, copy))
+frev = function(x, copy=TRUE) {
21
+ ans = .Call(Cfrev, x, copy)
22
+ if (isTRUE(copy)) ans else invisible(ans)
23
+}
0 commit comments