You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(gmp)
as.bigz(c(1,2,3,4))[c(TRUE, FALSE)]
# Big Integer ('bigz') object of length 2:# [1] 1 3
as.bigz(c(1,2,3,4))[c(1, -1)]
# Error in `[.bigz`(as.bigz(c(1, 2, 3, 4)), c(1, -1)) : # only 0's may mix with negative subscripts
as.bigz(c(1,2,3,4))[c(-1, 1)] # This should be a bug in gmp# Big Integer ('bigz') object of length 4:# [1] 1 2 3 4
S4Vectors::normalizeSingleBracketSubscript and its friends