Sha256: 7de369eeb46ffc79dc04527d045a2eae3d9ea345f962f956f2425ffe94e6c12e
Contents?: true
Size: 678 Bytes
Versions: 253
Compression:
Stored size: 678 Bytes
Contents
using System; public class CircularBuffer<T> { public CircularBuffer(int size) { throw new NotImplementedException("You need to implement this function."); } public T Read() { throw new NotImplementedException("You need to implement this function."); } public void Write(T value) { throw new NotImplementedException("You need to implement this function."); } public void ForceWrite(T value) { throw new NotImplementedException("You need to implement this function."); } public void Clear() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
253 entries across 253 versions & 1 rubygems