Skip to content
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

Deque: add try_push_back/try_push_front methods #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
18 changes: 18 additions & 0 deletions src/deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,24 @@ impl<T: Default + Copy + Clone + Pod + Zeroable, const MAX_SIZE: usize> Deque<T,
self.sequence_number += 1;
}

pub fn try_push_back(&mut self, node: T) -> Result<(), &'static str> {
if self.len() < MAX_SIZE {
self.push_back(node);
Ok(())
} else {
Err("Deque::try_push_back failed. Deque is at max capacity.")
}
}

pub fn try_push_front(&mut self, node: T) -> Result<(), &'static str> {
if self.len() < MAX_SIZE {
self.push_front(node);
Ok(())
} else {
Err("Deque::try_push_front failed. Deque is at max capacity.")
}
}

pub fn pop_front(&mut self) -> Option<T> {
if self.head == SENTINEL {
return None;
Expand Down