Function rerun::external::arrow2::array::clone

source ·
pub fn clone(array: &(dyn Array + 'static)) -> Box<dyn Array>
Expand description

Clones a dynamic Array.

§Implementation

This operation is O(1) over len, as it amounts to increase two ref counts and moving the concrete struct under a Box.