Beatsaber Rust Utilities: A Beatsaber V3 parsing library.
beatsaber beatmap
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Made `count_filtered` methods link to each other.

AlephCubed 4857ca1a 606ba66e

+6 -1
+6 -1
src/difficulty/lightshow/filter.rs
··· 115 115 } 116 116 } 117 117 118 + #[allow(deprecated)] 118 119 /// Returns the number of light chunks effected by the filter, but before applying the limit. 119 - /// 120 120 /// This is required for distribution calculations. 121 + /// 122 + /// Also see [`count_filtered`](Self::count_filtered). 121 123 /// # Unknown 122 124 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`. 123 125 #[must_use] ··· 144 146 } 145 147 } 146 148 149 + #[allow(deprecated)] 147 150 /// Returns the number of light chunks effected by the filter. 151 + /// 152 + /// Also see [`count_filtered_without_limit`](Self::count_filtered_without_limit). 148 153 /// # Unknown 149 154 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`. 150 155 #[must_use]