-
-
Save Nimster/4078106 to your computer and use it in GitHub Desktop.
A simple ring buffer for Ruby.
This file contains 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
class RingBuffer < Array | |
attr_reader :max_size | |
def initialize(max_size, enum = nil) | |
@max_size = max_size | |
enum.each { |e| self << e } if enum | |
end | |
def <<(el) | |
if self.size < @max_size || @max_size.nil? | |
super | |
else | |
self.shift | |
self.push(el) | |
end | |
end | |
alias :push :<< | |
end |
Thanks for the comment, I also fixed the original according to your suggestion.
Thanks for posting, and thanks for fixing!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This doesn't suffer from the bug that the original, https://gist.github.com/1904422 , suffers from (see my comment there)