-
-
Save jhjguxin/b1f21748658638a5e4a8779f19fe7e2e 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment