mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
10 lines
150 B
Swift
10 lines
150 B
Swift
import Foundation
|
|
|
|
protocol Codec {
|
|
associatedtype Buffer
|
|
|
|
var outputBuffer: Buffer { get }
|
|
|
|
func releaseOutputBuffer(_ buffer: Buffer)
|
|
}
|