Tagged Questions
3
votes
3answers
561 views
Where can I find a good Delphi or Object Pascal implementation for a circular buffer
My main purpose is to have a generic data buffer that I can use for transfers.
I'm thinking of something along the lines of what XCopy did.
Is there something already made out there or a good ...
1
vote
0answers
156 views
Simple circular buffer wrap-around - pascal delphi [closed]
I have written a little circular buffer for integers. My requirements were to add an integer on at a time and to read from the circular buffer as though it were an array wrapping around ...