This file contains hidden or 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
package main | |
import "fmt" | |
// Object is an interface for cache value elements. | |
type Object interface{} | |
// CycledBuffer is a buffer for storing cache objects. | |
type CycledBuffer struct { | |
buff []Object |
OlderNewer