Skip to content

Commit

Permalink
Group use statements together
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Apr 23, 2024
1 parent 2058002 commit 1f74315
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pineappl/src/packed_array.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
//! Provides the [`PackedArray`] struct.
use std::ops::{Index, IndexMut, MulAssign};
use std::{mem, vec};

use ndarray::ArrayView3;
use serde::{Deserialize, Serialize};
use std::mem;
use std::ops::{Index, IndexMut, MulAssign};

/// `D`-dimensional array similar to [`ndarray::ArrayBase`], except that `T::default()` is not
/// stored to save space. Instead, adjacent non-default elements are grouped together and the index
Expand Down

0 comments on commit 1f74315

Please sign in to comment.