Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Add clear method to Spline #98

Merged
merged 1 commit into from
Sep 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/spline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ impl<T, V> Spline<T, V> {
spline.internal_sort();
spline
}

/// Clear the spline by removing all keys. Keeps the underlying allocated storage, so adding
/// new keys should be faster than creating a new [`Spline`]
#[inline]
pub fn clear(&mut self) {
self.0.clear()
}

/// Create a new spline by consuming an `Iterater<Item = Key<T>>`. They keys don’t have to be
/// sorted.
Expand Down