been playing with pervasive structs in swift; is there a best practice for archiving them? a __conversion to NSData?
Conversation
Replying to
Something like:
protocol Encodeable {
func encode() -> [UInt8]
}
protocol Decodeable {
init?([UInt8])
}

