Skip to content

Instantly share code, notes, and snippets.

@hbarcelos
Created June 1, 2016 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbarcelos/c0c5801949baf12c3c0d8da7e1e34759 to your computer and use it in GitHub Desktop.
Save hbarcelos/c0c5801949baf12c3c0d8da7e1e34759 to your computer and use it in GitHub Desktop.
'use strict';
var RoundLinkedQueue = function RoundLinkedQueue(size) {
}
module.exports = RoundLinkedQueue;
RoundLinkedQueue.prototype.push = function(data) {
};
RoundLinkedQueue.prototype.pop = function() {
};
RoundLinkedQueue.prototype.first = function() {
};
RoundLinkedQueue.prototype.last = function() {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment