pub fn create_disk_array<A, S, D>(
data: &ArrayBase<S, D>,
file_path: &Path,
strategy: ChunkingStrategy,
read_only: bool,
) -> Result<DiskBackedArray<A, D>, CoreError>where
A: Clone + Serialize + for<'de> Deserialize<'de>,
S: Data<Elem = A>,
D: Dimension + Serialize + for<'de> Deserialize<'de>,Expand description
Create a disk-backed array from the given data and file path