Documents and IDs
-
A document belonging to a
See moreDittoCollectionwith an inner value.Declaration
Swift
public class DittoDocumentextension DittoDocument: CustomStringConvertible, CustomDebugStringConvertibleextension DittoDocument: Identifiable -
Provides an interface to specify a path to a key in a document that you can then call a function on to get the value at the specified key as a specific type. You obtain a
See moreDittoDocumentPathby subscripting aDittoDocumentand you can then further subscript aDittoDocumentPathto further specify the key of the document that you want to get the value of.Declaration
Swift
public struct DittoDocumentPath -
This is used as part of update operations for documents. It provides access to updating a document through a subscript-based API. A subscript operation returns a
See moreDittoMutableDocumentPaththat you can then use to chain further subscript operations to in order to access nested values in a document. Once you’ve defined the path to a key in a document that you’d like to update, by using subscripts, then you can use the functionality defined onDittoMutableDocumentPathto perform the desired document update(s). Note that objects of this type should only be used within the scope of the update closure that they are provided in.Declaration
Swift
public class DittoMutableDocument -
Provides an interface to specify a path to a key in a document that you can then call various update functions on. You obtain a
See moreDittoMutableDocumentPathby subscripting aDittoMutableDocumentand you can then further subscript aDittoMutbaleDocumentPathto further specify the key of the document that you want to update.Declaration
Swift
public class DittoMutableDocumentPath: Swift.ExpressibleByStringLiteral, Swift.ExpressibleByIntegerLiteral, Swift.ExpressibleByBooleanLiteral, Swift.ExpressibleByFloatLiteral, Swift.ExpressibleByDictionaryLiteral, Swift.ExpressibleByArrayLiteral, Swift.ExpressibleByNilLiteral -
An identifier for a
DittoDocument.Each
See moreDittoDocumentIDrepresents a unique identifier for a document.Declaration
Swift
public struct DittoDocumentID : Hashableextension DittoDocumentID: CustomStringConvertible, CustomDebugStringConvertibleextension DittoDocumentID: ExpressibleByStringLiteralextension DittoDocumentID: ExpressibleByBooleanLiteralextension DittoDocumentID: ExpressibleByIntegerLiteralextension DittoDocumentID: ExpressibleByArrayLiteralextension DittoDocumentID: ExpressibleByDictionaryLiteral -
Provides an interface to specify a path to a key in a document ID that you can then call a function on to get the value at the specified key as a specific type. You obtain a
See moreDittoDocumentIDPathby subscripting aDittoDocumentIDand you can then further subscript aDittoDocumentIDPathto further specify the key of the document ID that you want to get the value of. This is only really useful if you’re working with a document ID whose underlying value is a dictionary or an array.Declaration
Swift
public struct DittoDocumentIDPath -
A document belonging to a
See moreDittoCollectionwith an inner typed value.Declaration
Swift
public class DittoTypedDocument<T> where T : Decodable
Documents and IDs Reference