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