From da738b8189eaf6e36f050ba7f9ff933297f7d199 Mon Sep 17 00:00:00 2001 From: daniellga Date: Mon, 29 Jul 2024 14:16:42 -0300 Subject: [PATCH] cargo fmt --- src/impl_arc_array.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/impl_arc_array.rs b/src/impl_arc_array.rs index 966b09098..0225c71ac 100644 --- a/src/impl_arc_array.rs +++ b/src/impl_arc_array.rs @@ -13,12 +13,12 @@ use alloc::sync::Arc; /// /// ***See also all methods for [`ArrayBase`]*** impl ArcArray -where - D: Dimension, +where D: Dimension { /// Returns `true` iff the inner `Arc` is not shared. /// If you want to ensure the `Arc` is not concurrently cloned, you need to provide a `&mut self` to this function. - pub fn is_unique(&self) -> bool { + pub fn is_unique(&self) -> bool + { // Only strong pointers are used in this crate. Arc::strong_count(&self.data.0) == 1 }