I want to replicate in R these lines from c#:
uint m_z = 2169792120;
uint rg = m_z << 16; // rg = 1719140352
in R i tried this:
m_z = 2169792120
is.double(m_z) #TRUE
rg <- bitwShiftL(m_z, 16) #In bitwShiftL(a, 16) : NAs introduced by coercion to integer range
.Machine$integer.max < m_z #TRUE
bitwShiftL
is for integer, what can i use if i need double?