powered by
View Predicates
is_view(x)is_block_view(x)
is_block_view(x)
Logical. TRUE if x is a shard view (or block view).
TRUE
x
An object.
# \donttest{ m <- share(matrix(1:20, nrow = 4)) v <- view_block(m, cols = idx_range(1, 2)) is_view(v) is_block_view(v) # }
Run the code above in your browser using DataLab