import Foundation import DataLiteCore package protocol ValueEncoder: Encoder { func encodeNil() throws func encodeDate(_ date: Date) throws func encode(_ value: T) throws }