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 ba21a7b commit bed8e32Copy full SHA for bed8e32
R/zzz.R
@@ -31,8 +31,10 @@ on_load(
31
}
32
)
33
34
+# In R >= 4.3.0, S7 methods fall back to base Ops behavior when one of the
35
+# arguments is not an S7 object. This ensures compatibility in such cases.
36
on_load(
- if (getRversion() > "4.3.0") registerS3method("+", "gg", add_gg)
37
+ if (getRversion() >= "4.3.0") registerS3method("+", "gg", add_gg)
38
39
40
on_load(S7::methods_register())
0 commit comments