AppleDocs for Field source files

This commit is contained in:
John Estropia
2020-03-26 01:57:32 +09:00
parent b6db872be0
commit 97f2a53124
14 changed files with 408 additions and 148 deletions

View File

@@ -30,6 +30,9 @@ import Foundation
extension FieldCoders {
/**
A `FieldCoderType` that implements the default Core Data transformable attribute behavior, which uses a `ValueTransformer` named `.secureUnarchiveFromDataTransformerName`.
*/
public struct DefaultNSSecureCoding<T: DefaultNSSecureCodable>: FieldCoderType {
// MARK: FieldCoderType
@@ -64,6 +67,11 @@ extension FieldCoders {
}
// MARK: - DefaultNSSecureCodable
/**
Types that are supported by `FieldCoders.DefaultNSSecureCoding`
*/
public protocol DefaultNSSecureCodable: NSObject, NSSecureCoding {}
extension NSArray: DefaultNSSecureCodable {}