npy-rs
npy-rs copied to clipboard
OutFile::open should be named OutFile::create
The name open
is confusing and suggests that the file must already exist (or that any existing data is somehow retained).
create
is consistent with std::fs::File::create
.