bitlist =
# Taken from RAutoGenRuntime
function(...)
{
x = unlist(list(...))
if(length(x) == 1)
return(x)
ans = x[1]
bitOr = bitops::bitOr
for(i in 2:length(x)) {
ans = bitOr(ans, x[i])
}
ans
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.