Created
June 1, 2016 01:59
-
-
Save hbarcelos/c0c5801949baf12c3c0d8da7e1e34759 to your computer and use it in GitHub Desktop.
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
'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