-
Notifications
You must be signed in to change notification settings - Fork 0
Accept expression for capacity and length in vec macro #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
andreiavrammsd
merged 5 commits into
master
from
macro-accept-expression-for-capacity-and-length
May 27, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ab4b2db
Accept expr for capacity and length
andreiavrammsd 2a58a71
Add history example
andreiavrammsd 386cbae
Run examples in CI
andreiavrammsd 4da04fb
Add jq to dev setup
andreiavrammsd a40f685
Use len instead of capacity
andreiavrammsd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
use static_vector::{Vec, vec}; | ||
|
||
#[derive(Debug, PartialEq, Clone, Copy)] | ||
enum Event { | ||
Start, | ||
Load, | ||
Run, | ||
Pause, | ||
Resume, | ||
Stop, | ||
Exit, | ||
} | ||
|
||
struct EventHistory<const N: usize> { | ||
events: Vec<Event, N>, | ||
} | ||
|
||
impl<const N: usize> EventHistory<N> { | ||
const fn new() -> Self { | ||
Self { events: vec![Event; N] } | ||
andreiavrammsd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
fn insert(&mut self, event: Event) { | ||
if self.events.is_full() { | ||
// Remove the oldest event (FIFO) | ||
let len = self.events.len(); | ||
self.events.as_mut_slice().copy_within(1..len, 0); | ||
|
||
// Can ignore the error here since we are guaranteed to have at least one element | ||
// because the vector is full. | ||
let _ = self.events.pop(); | ||
} | ||
|
||
// Can ignore the error here since we are guaranteed to have space after popping | ||
// if the vector was full. | ||
let _ = self.events.push(event); | ||
andreiavrammsd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
const fn get_events(&self) -> &[Event] { | ||
self.events.as_slice() | ||
} | ||
} | ||
|
||
// Example of using static_vector to maintain a history of events | ||
fn main() { | ||
const HISTORY_SIZE: usize = 5; | ||
let mut history = EventHistory::<HISTORY_SIZE>::new(); | ||
|
||
let events = [ | ||
Event::Start, | ||
Event::Load, | ||
Event::Run, | ||
Event::Pause, | ||
Event::Resume, | ||
Event::Stop, | ||
Event::Exit, | ||
]; | ||
for &event in &events { | ||
history.insert(event); | ||
} | ||
|
||
assert_eq!( | ||
history.get_events(), | ||
&[Event::Run, Event::Pause, Event::Resume, Event::Stop, Event::Exit], | ||
"Expected history to contain the last 5 events" | ||
); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.