From 7917b9ecace232fe32d28132f51a57fc12288cb3 Mon Sep 17 00:00:00 2001 From: Ryo Aoyama Date: Sun, 12 Apr 2020 08:44:25 +0900 Subject: [PATCH] Bump version to 0.4.0 --- .version | 1 + DiffableDataSources.podspec | 2 +- .../CollectionViewDiffableDataSource.html | 142 ++++++++- docs/Classes/TableViewDiffableDataSource.html | 276 +++++++++++++++++- docs/DataSources.html | 4 +- docs/Snapshot.html | 4 +- docs/Structs/DiffableDataSourceSnapshot.html | 34 +-- docs/badge.svg | 16 +- docs/index.html | 4 +- docs/search.json | 2 +- 10 files changed, 447 insertions(+), 38 deletions(-) create mode 100644 .version diff --git a/.version b/.version new file mode 100644 index 0000000..1d0ba9e --- /dev/null +++ b/.version @@ -0,0 +1 @@ +0.4.0 diff --git a/DiffableDataSources.podspec b/DiffableDataSources.podspec index 7f62850..d3cfa02 100644 --- a/DiffableDataSources.podspec +++ b/DiffableDataSources.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'DiffableDataSources' - spec.version = '0.3.0' + spec.version = `cat .version` spec.author = { 'ra1028' => 'r.fe51028.r@gmail.com' } spec.homepage = 'https://github.com/ra1028/DiffableDataSources' spec.documentation_url = 'https://ra1028.github.io/DiffableDataSources' diff --git a/docs/Classes/CollectionViewDiffableDataSource.html b/docs/Classes/CollectionViewDiffableDataSource.html index ba23473..0884bb1 100644 --- a/docs/Classes/CollectionViewDiffableDataSource.html +++ b/docs/Classes/CollectionViewDiffableDataSource.html @@ -23,7 +23,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

@@ -167,7 +167,7 @@

Declaration

Declaration

Swift

-
public var supplementaryViewProvider: CollectionViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>.SupplementaryViewProvider?
+
public var supplementaryViewProvider: SupplementaryViewProvider?
@@ -683,6 +683,142 @@

Return Value

+
  • +
    + + + + collectionView(_:canMoveItemAt:) + +
    +
    +
    +
    +
    +
    +

    Returns whether it is possible to edit a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func collectionView(_ collectionView: UICollectionView, canMoveItemAt indexPath: IndexPath) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + collectionView + + +
    +

    A collection view instance managed by self.

    +
    +
    + + section + + +
    +

    An index of section.

    +
    +
    +
    +
    +

    Return Value

    +

    A boolean for row at specified index path.

    +
    +
    +
    +
  • +
  • +
    + + + + collectionView(_:moveItemAt:to:) + +
    +
    +
    +
    +
    +
    +

    Moves a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + collectionView + + +
    +

    A collection view instance managed by self.

    +
    +
    + + sourceIndexPath + + +
    +

    An index path for given cell position.

    +
    +
    + + destinationIndexPath + + +
    +

    An index path for target cell position.

    +
    +
    +
    +
    +

    Return Value

    +

    Void.

    +
    +
    +
    +
  • @@ -691,7 +827,7 @@

    Return Value

    diff --git a/docs/Classes/TableViewDiffableDataSource.html b/docs/Classes/TableViewDiffableDataSource.html index 1fc3a08..69d3277 100644 --- a/docs/Classes/TableViewDiffableDataSource.html +++ b/docs/Classes/TableViewDiffableDataSource.html @@ -23,7 +23,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

    @@ -706,6 +706,278 @@

    Return Value

    +
  • +
    + + + + tableView(_:canEditRowAt:) + +
    +
    +
    +
    +
    +
    +

    Returns whether it is possible to edit a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func tableView(_ tableView: UITableView, canEditRowAt: IndexPath) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + tableView + + +
    +

    A table view instance managed by self.

    +
    +
    + + section + + +
    +

    An index of section.

    +
    +
    +
    +
    +

    Return Value

    +

    A boolean for row at specified index path.

    +
    +
    +
    +
  • +
  • +
    + + + + tableView(_:canMoveRowAt:) + +
    +
    +
    +
    +
    +
    +

    Returns whether it is possible to move a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func tableView(_ tableView: UITableView, canMoveRowAt _: IndexPath) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + tableView + + +
    +

    A table view instance managed by self.

    +
    +
    + + section + + +
    +

    An index of section.

    +
    +
    +
    +
    +

    Return Value

    +

    A boolean for row at specified index path.

    +
    +
    +
    +
  • +
  • +
    + + + + tableView(_:commit:forRowAt:) + +
    +
    +
    +
    +
    +
    +

    Performs the edit action for a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func tableView(_ tableView: UITableView, commit _: UITableViewCell.EditingStyle, forRowAt _: IndexPath)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + tableView + + +
    +

    A table view instance managed by self.

    +
    +
    + + editingStyle + + +
    +

    An action for given edit action.

    +
    +
    + + indexPath + + +
    +

    An index path for cell.

    +
    +
    +
    +
    +

    Return Value

    +

    Void.

    +
    +
    +
    +
  • +
  • +
    + + + + tableView(_:moveRowAt:to:) + +
    +
    +
    +
    +
    +
    +

    Moves a row at given index path.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func tableView(_ tableView: UITableView, moveRowAt _: IndexPath, to _: IndexPath)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + tableView + + +
    +

    A table view instance managed by self.

    +
    +
    + + source + + +
    +

    An index path for given cell position.

    +
    +
    + + target + + +
    +

    An index path for target cell position.

    +
    +
    +
    +
    +

    Return Value

    +

    Void.

    +
    +
    +
    +
  • @@ -714,7 +986,7 @@

    Return Value

    diff --git a/docs/DataSources.html b/docs/DataSources.html index 31d28ac..0fe5930 100644 --- a/docs/DataSources.html +++ b/docs/DataSources.html @@ -23,7 +23,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

    @@ -156,7 +156,7 @@

    Declaration

    diff --git a/docs/Snapshot.html b/docs/Snapshot.html index b4d73e6..a50eba1 100644 --- a/docs/Snapshot.html +++ b/docs/Snapshot.html @@ -23,7 +23,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

    @@ -121,7 +121,7 @@

    Declaration

    diff --git a/docs/Structs/DiffableDataSourceSnapshot.html b/docs/Structs/DiffableDataSourceSnapshot.html index 14a3a9d..3cb7204 100644 --- a/docs/Structs/DiffableDataSourceSnapshot.html +++ b/docs/Structs/DiffableDataSourceSnapshot.html @@ -23,7 +23,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

    @@ -497,7 +497,7 @@

    Return Value

    Declaration

    Swift

    -
    public mutating func appendItems(_ identifiers: [ItemIdentifierType], toSection sectionIdentifier: SectionIdentifierType? = nil)
    +
    public mutating mutating func appendItems(_ identifiers: [ItemIdentifierType], toSection sectionIdentifier: SectionIdentifierType? = nil)
    @@ -555,7 +555,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func insertItems(_ identifiers: [ItemIdentifierType], beforeItem beforeIdentifier: ItemIdentifierType)
    +
    public mutating mutating func insertItems(_ identifiers: [ItemIdentifierType], beforeItem beforeIdentifier: ItemIdentifierType)
    @@ -613,7 +613,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func insertItems(_ identifiers: [ItemIdentifierType], afterItem afterIdentifier: ItemIdentifierType)
    +
    public mutating mutating func insertItems(_ identifiers: [ItemIdentifierType], afterItem afterIdentifier: ItemIdentifierType)
    @@ -671,7 +671,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func deleteItems(_ identifiers: [ItemIdentifierType])
    +
    public mutating mutating func deleteItems(_ identifiers: [ItemIdentifierType])
    @@ -717,7 +717,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func deleteAllItems()
    +
    public mutating mutating func deleteAllItems()
    @@ -744,7 +744,7 @@

    Declaration

    Declaration

    Swift

    -
    public mutating func moveItem(_ identifier: ItemIdentifierType, beforeItem toIdentifier: ItemIdentifierType)
    +
    public mutating mutating func moveItem(_ identifier: ItemIdentifierType, beforeItem toIdentifier: ItemIdentifierType)
    @@ -802,7 +802,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func moveItem(_ identifier: ItemIdentifierType, afterItem toIdentifier: ItemIdentifierType)
    +
    public mutating mutating func moveItem(_ identifier: ItemIdentifierType, afterItem toIdentifier: ItemIdentifierType)
    @@ -860,7 +860,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func reloadItems(_ identifiers: [ItemIdentifierType])
    +
    public mutating mutating func reloadItems(_ identifiers: [ItemIdentifierType])
    @@ -906,7 +906,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func appendSections(_ identifiers: [SectionIdentifierType])
    +
    public mutating mutating func appendSections(_ identifiers: [SectionIdentifierType])
    @@ -952,7 +952,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func insertSections(_ identifiers: [SectionIdentifierType], beforeSection toIdentifier: SectionIdentifierType)
    +
    public mutating mutating func insertSections(_ identifiers: [SectionIdentifierType], beforeSection toIdentifier: SectionIdentifierType)
    @@ -1010,7 +1010,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func insertSections(_ identifiers: [SectionIdentifierType], afterSection toIdentifier: SectionIdentifierType)
    +
    public mutating mutating func insertSections(_ identifiers: [SectionIdentifierType], afterSection toIdentifier: SectionIdentifierType)
    @@ -1068,7 +1068,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func deleteSections(_ identifiers: [SectionIdentifierType])
    +
    public mutating mutating func deleteSections(_ identifiers: [SectionIdentifierType])
    @@ -1114,7 +1114,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func moveSection(_ identifier: SectionIdentifierType, beforeSection toIdentifier: SectionIdentifierType)
    +
    public mutating mutating func moveSection(_ identifier: SectionIdentifierType, beforeSection toIdentifier: SectionIdentifierType)
    @@ -1172,7 +1172,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func moveSection(_ identifier: SectionIdentifierType, afterSection toIdentifier: SectionIdentifierType)
    +
    public mutating mutating func moveSection(_ identifier: SectionIdentifierType, afterSection toIdentifier: SectionIdentifierType)
    @@ -1230,7 +1230,7 @@

    Parameters

    Declaration

    Swift

    -
    public mutating func reloadSections(_ identifiers: [SectionIdentifierType])
    +
    public mutating mutating func reloadSections(_ identifiers: [SectionIdentifierType])
    @@ -1264,7 +1264,7 @@

    Parameters

    diff --git a/docs/badge.svg b/docs/badge.svg index a096fec..7c971c6 100644 --- a/docs/badge.svg +++ b/docs/badge.svg @@ -1,15 +1,15 @@ - + - + - - + + @@ -18,11 +18,11 @@ documentation - - 100% + + 96% - - 100% + + 96% diff --git a/docs/index.html b/docs/index.html index decdd17..f091fae 100644 --- a/docs/index.html +++ b/docs/index.html @@ -22,7 +22,7 @@ DiffableDataSources Docs - (100% documented) + (96% documented)

    @@ -287,7 +287,7 @@

    License

    diff --git a/docs/search.json b/docs/search.json index 7818ff0..2d81313 100644 --- a/docs/search.json +++ b/docs/search.json @@ -1 +1 @@ -{"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotVACyxq_Gycfc":{"name":"init()","abstract":"

    Creates a new empty snapshot object.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV13numberOfItemsSivp":{"name":"numberOfItems","abstract":"

    The number of item identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV16numberOfSectionsSivp":{"name":"numberOfSections","abstract":"

    The number of section identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV18sectionIdentifiersSayxGvp":{"name":"sectionIdentifiers","abstract":"

    All section identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV15itemIdentifiersSayq_Gvp":{"name":"itemIdentifiers","abstract":"

    All item identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV13numberOfItems9inSectionSix_tF":{"name":"numberOfItems(inSection:)","abstract":"

    Returns the number of item identifiers in the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV15itemIdentifiers9inSectionSayq_Gx_tF":{"name":"itemIdentifiers(inSection:)","abstract":"

    Returns the item identifiers in the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV17sectionIdentifier14containingItemxSgq__tF":{"name":"sectionIdentifier(containingItem:)","abstract":"

    Returns a section identifier containing the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11indexOfItemySiSgq_F":{"name":"indexOfItem(_:)","abstract":"

    Returns an index of the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14indexOfSectionySiSgxF":{"name":"indexOfSection(_:)","abstract":"

    Returns an index of the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11appendItems_9toSectionySayq_G_xSgtF":{"name":"appendItems(_:toSection:)","abstract":"

    Appends the given item identifiers to the specified section or last section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11insertItems_10beforeItemySayq_G_q_tF":{"name":"insertItems(_:beforeItem:)","abstract":"

    Inserts the given item identifiers before the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11insertItems_9afterItemySayq_G_q_tF":{"name":"insertItems(_:afterItem:)","abstract":"

    Inserts the given item identifiers after the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11deleteItemsyySayq_GF":{"name":"deleteItems(_:)","abstract":"

    Deletes the specified items.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14deleteAllItemsyyF":{"name":"deleteAllItems()","abstract":"

    Deletes the all items in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV8moveItem_06beforeG0yq__q_tF":{"name":"moveItem(_:beforeItem:)","abstract":"

    Moves the given item identifier before the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV8moveItem_05afterG0yq__q_tF":{"name":"moveItem(_:afterItem:)","abstract":"

    Moves the given item identifier after the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11reloadItemsyySayq_GF":{"name":"reloadItems(_:)","abstract":"

    Reloads the specified items.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14appendSectionsyySayxGF":{"name":"appendSections(_:)","abstract":"

    Appends the given section identifiers to the end of sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14insertSections_13beforeSectionySayxG_xtF":{"name":"insertSections(_:beforeSection:)","abstract":"

    Inserts the given section identifiers before the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14insertSections_12afterSectionySayxG_xtF":{"name":"insertSections(_:afterSection:)","abstract":"

    Inserts the given section identifiers after the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14deleteSectionsyySayxGF":{"name":"deleteSections(_:)","abstract":"

    Deletes the specified sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11moveSection_06beforeG0yx_xtF":{"name":"moveSection(_:beforeSection:)","abstract":"

    Moves the given section identifier before the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11moveSection_05afterG0yx_xtF":{"name":"moveSection(_:afterSection:)","abstract":"

    Moves the given section identifier after the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14reloadSectionsyySayxGF":{"name":"reloadSections(_:)","abstract":"

    Reloads the specified sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html":{"name":"DiffableDataSourceSnapshot","abstract":"

    A class for backporting NSDiffableDataSourceSnapshot introduced in iOS 13.0+, macOS 10.15+, tvOS 13.0+."},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC12CellProvidera":{"name":"CellProvider","abstract":"

    The type of closure providing the cell.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC013SupplementaryE8Providera":{"name":"SupplementaryViewProvider","abstract":"

    The type of closure providing the supplementary view for element of kind.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC013supplementaryE8ProviderSo020UICollectionReusableE0CSgSo0iE0C_SS10Foundation9IndexPathVtcSgvp":{"name":"supplementaryViewProvider","abstract":"

    A closure to dequeue the views for element of kind.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE012cellProviderACyxq_GSo012UICollectionE0C_So0jE4CellCSgAH_10Foundation9IndexPathVq_tctcfc":{"name":"init(collectionView:cellProvider:)","abstract":"

    Creates a new data source.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC5apply_20animatingDifferences10completionyAA0abF8SnapshotVyxq_G_SbyycSgtF":{"name":"apply(_:animatingDifferences:completion:)","abstract":"

    Applies given snapshot to perform automatic diffing update.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC8snapshotAA0abF8SnapshotVyxq_GyF":{"name":"snapshot()","abstract":"

    Returns a new snapshot object of current state.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC14itemIdentifier3forq_Sg10Foundation9IndexPathV_tF":{"name":"itemIdentifier(for:)","abstract":"

    Returns an item identifier for given index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC9indexPath3for10Foundation05IndexH0VSgq__tF":{"name":"indexPath(for:)","abstract":"

    Returns an index path for given item identifier.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC16numberOfSections2inSiSo012UICollectionE0C_tF":{"name":"numberOfSections(in:)","abstract":"

    Returns the number of sections in the data source.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_22numberOfItemsInSectionSiSo012UICollectionE0C_SitF":{"name":"collectionView(_:numberOfItemsInSection:)","abstract":"

    Returns the number of items in the specified section.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_13cellForItemAtSo012UICollectionE4CellCSo0lE0C_10Foundation9IndexPathVtF":{"name":"collectionView(_:cellForItemAt:)","abstract":"

    Returns a cell for item at specified index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_33viewForSupplementaryElementOfKind2atSo020UICollectionReusableE0CSo0oE0C_SS10Foundation9IndexPathVtF":{"name":"collectionView(_:viewForSupplementaryElementOfKind:at:)","abstract":"

    Returns a supplementary view for element of kind at specified index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC12CellProvidera":{"name":"CellProvider","abstract":"

    The type of closure providing the cell.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC19defaultRowAnimationSo07UITableehI0Vvp":{"name":"defaultRowAnimation","abstract":"

    The default animation to updating the views.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE012cellProviderACyxq_GSo07UITableE0C_So0jE4CellCSgAH_10Foundation9IndexPathVq_tctcfc":{"name":"init(tableView:cellProvider:)","abstract":"

    Creates a new data source.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC5apply_20animatingDifferences10completionyAA0abF8SnapshotVyxq_G_SbyycSgtF":{"name":"apply(_:animatingDifferences:completion:)","abstract":"

    Applies given snapshot to perform automatic diffing update.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC8snapshotAA0abF8SnapshotVyxq_GyF":{"name":"snapshot()","abstract":"

    Returns a new snapshot object of current state.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC14itemIdentifier3forq_Sg10Foundation9IndexPathV_tF":{"name":"itemIdentifier(for:)","abstract":"

    Returns an item identifier for given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC9indexPath3for10Foundation05IndexH0VSgq__tF":{"name":"indexPath(for:)","abstract":"

    Returns an index path for given item identifier.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC16numberOfSections2inSiSo07UITableE0C_tF":{"name":"numberOfSections(in:)","abstract":"

    Returns the number of sections in the data source.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_21numberOfRowsInSectionSiSo07UITableE0C_SitF":{"name":"tableView(_:numberOfRowsInSection:)","abstract":"

    Returns the number of items in the specified section.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_23titleForHeaderInSectionSSSgSo07UITableE0C_SitF":{"name":"tableView(_:titleForHeaderInSection:)","abstract":"

    Returns the title for the specified section’s header.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_23titleForFooterInSectionSSSgSo07UITableE0C_SitF":{"name":"tableView(_:titleForFooterInSection:)","abstract":"

    Returns the title for the specified section’s footer.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_12cellForRowAtSo07UITableE4CellCSo0lE0C_10Foundation9IndexPathVtF":{"name":"tableView(_:cellForRowAt:)","abstract":"

    Returns a cell for row at specified index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html":{"name":"TableViewDiffableDataSource","abstract":"

    A class for backporting UITableViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+."},"Classes/CollectionViewDiffableDataSource.html":{"name":"CollectionViewDiffableDataSource","abstract":"

    A class for backporting UICollectionViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+."},"DataSources.html":{"name":"DataSources"},"Snapshot.html":{"name":"Snapshot"}} \ No newline at end of file +{"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotVACyxq_Gycfc":{"name":"init()","abstract":"

    Creates a new empty snapshot object.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV13numberOfItemsSivp":{"name":"numberOfItems","abstract":"

    The number of item identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV16numberOfSectionsSivp":{"name":"numberOfSections","abstract":"

    The number of section identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV18sectionIdentifiersSayxGvp":{"name":"sectionIdentifiers","abstract":"

    All section identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV15itemIdentifiersSayq_Gvp":{"name":"itemIdentifiers","abstract":"

    All item identifiers in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV13numberOfItems9inSectionSix_tF":{"name":"numberOfItems(inSection:)","abstract":"

    Returns the number of item identifiers in the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV15itemIdentifiers9inSectionSayq_Gx_tF":{"name":"itemIdentifiers(inSection:)","abstract":"

    Returns the item identifiers in the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV17sectionIdentifier14containingItemxSgq__tF":{"name":"sectionIdentifier(containingItem:)","abstract":"

    Returns a section identifier containing the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11indexOfItemySiSgq_F":{"name":"indexOfItem(_:)","abstract":"

    Returns an index of the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14indexOfSectionySiSgxF":{"name":"indexOfSection(_:)","abstract":"

    Returns an index of the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11appendItems_9toSectionySayq_G_xSgtF":{"name":"appendItems(_:toSection:)","abstract":"

    Appends the given item identifiers to the specified section or last section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11insertItems_10beforeItemySayq_G_q_tF":{"name":"insertItems(_:beforeItem:)","abstract":"

    Inserts the given item identifiers before the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11insertItems_9afterItemySayq_G_q_tF":{"name":"insertItems(_:afterItem:)","abstract":"

    Inserts the given item identifiers after the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11deleteItemsyySayq_GF":{"name":"deleteItems(_:)","abstract":"

    Deletes the specified items.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14deleteAllItemsyyF":{"name":"deleteAllItems()","abstract":"

    Deletes the all items in the snapshot.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV8moveItem_06beforeG0yq__q_tF":{"name":"moveItem(_:beforeItem:)","abstract":"

    Moves the given item identifier before the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV8moveItem_05afterG0yq__q_tF":{"name":"moveItem(_:afterItem:)","abstract":"

    Moves the given item identifier after the specified item.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11reloadItemsyySayq_GF":{"name":"reloadItems(_:)","abstract":"

    Reloads the specified items.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14appendSectionsyySayxGF":{"name":"appendSections(_:)","abstract":"

    Appends the given section identifiers to the end of sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14insertSections_13beforeSectionySayxG_xtF":{"name":"insertSections(_:beforeSection:)","abstract":"

    Inserts the given section identifiers before the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14insertSections_12afterSectionySayxG_xtF":{"name":"insertSections(_:afterSection:)","abstract":"

    Inserts the given section identifiers after the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14deleteSectionsyySayxGF":{"name":"deleteSections(_:)","abstract":"

    Deletes the specified sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11moveSection_06beforeG0yx_xtF":{"name":"moveSection(_:beforeSection:)","abstract":"

    Moves the given section identifier before the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV11moveSection_05afterG0yx_xtF":{"name":"moveSection(_:afterSection:)","abstract":"

    Moves the given section identifier after the specified section.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html#/s:19DiffableDataSources0aB14SourceSnapshotV14reloadSectionsyySayxGF":{"name":"reloadSections(_:)","abstract":"

    Reloads the specified sections.

    ","parent_name":"DiffableDataSourceSnapshot"},"Structs/DiffableDataSourceSnapshot.html":{"name":"DiffableDataSourceSnapshot","abstract":"

    A class for backporting NSDiffableDataSourceSnapshot introduced in iOS 13.0+, macOS 10.15+, tvOS 13.0+."},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC12CellProvidera":{"name":"CellProvider","abstract":"

    The type of closure providing the cell.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC013SupplementaryE8Providera":{"name":"SupplementaryViewProvider","abstract":"

    The type of closure providing the supplementary view for element of kind.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC013supplementaryE8ProviderSo020UICollectionReusableE0CSgSo0iE0C_SS10Foundation9IndexPathVtcSgvp":{"name":"supplementaryViewProvider","abstract":"

    A closure to dequeue the views for element of kind.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE012cellProviderACyxq_GSo012UICollectionE0C_So0jE4CellCSgAH_10Foundation9IndexPathVq_tctcfc":{"name":"init(collectionView:cellProvider:)","abstract":"

    Creates a new data source.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC5apply_20animatingDifferences10completionyAA0abF8SnapshotVyxq_G_SbyycSgtF":{"name":"apply(_:animatingDifferences:completion:)","abstract":"

    Applies given snapshot to perform automatic diffing update.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC8snapshotAA0abF8SnapshotVyxq_GyF":{"name":"snapshot()","abstract":"

    Returns a new snapshot object of current state.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC14itemIdentifier3forq_Sg10Foundation9IndexPathV_tF":{"name":"itemIdentifier(for:)","abstract":"

    Returns an item identifier for given index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC9indexPath3for10Foundation05IndexH0VSgq__tF":{"name":"indexPath(for:)","abstract":"

    Returns an index path for given item identifier.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC16numberOfSections2inSiSo012UICollectionE0C_tF":{"name":"numberOfSections(in:)","abstract":"

    Returns the number of sections in the data source.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_22numberOfItemsInSectionSiSo012UICollectionE0C_SitF":{"name":"collectionView(_:numberOfItemsInSection:)","abstract":"

    Returns the number of items in the specified section.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_13cellForItemAtSo012UICollectionE4CellCSo0lE0C_10Foundation9IndexPathVtF":{"name":"collectionView(_:cellForItemAt:)","abstract":"

    Returns a cell for item at specified index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_33viewForSupplementaryElementOfKind2atSo020UICollectionReusableE0CSo0oE0C_SS10Foundation9IndexPathVtF":{"name":"collectionView(_:viewForSupplementaryElementOfKind:at:)","abstract":"

    Returns a supplementary view for element of kind at specified index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_13canMoveItemAtSbSo012UICollectionE0C_10Foundation9IndexPathVtF":{"name":"collectionView(_:canMoveItemAt:)","abstract":"

    Returns whether it is possible to edit a row at given index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/CollectionViewDiffableDataSource.html#/s:19DiffableDataSources014CollectionViewaB6SourceC010collectionE0_10moveItemAt2toySo012UICollectionE0C_10Foundation9IndexPathVAKtF":{"name":"collectionView(_:moveItemAt:to:)","abstract":"

    Moves a row at given index path.

    ","parent_name":"CollectionViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC12CellProvidera":{"name":"CellProvider","abstract":"

    The type of closure providing the cell.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC19defaultRowAnimationSo07UITableehI0Vvp":{"name":"defaultRowAnimation","abstract":"

    The default animation to updating the views.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE012cellProviderACyxq_GSo07UITableE0C_So0jE4CellCSgAH_10Foundation9IndexPathVq_tctcfc":{"name":"init(tableView:cellProvider:)","abstract":"

    Creates a new data source.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC5apply_20animatingDifferences10completionyAA0abF8SnapshotVyxq_G_SbyycSgtF":{"name":"apply(_:animatingDifferences:completion:)","abstract":"

    Applies given snapshot to perform automatic diffing update.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC8snapshotAA0abF8SnapshotVyxq_GyF":{"name":"snapshot()","abstract":"

    Returns a new snapshot object of current state.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC14itemIdentifier3forq_Sg10Foundation9IndexPathV_tF":{"name":"itemIdentifier(for:)","abstract":"

    Returns an item identifier for given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC9indexPath3for10Foundation05IndexH0VSgq__tF":{"name":"indexPath(for:)","abstract":"

    Returns an index path for given item identifier.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC16numberOfSections2inSiSo07UITableE0C_tF":{"name":"numberOfSections(in:)","abstract":"

    Returns the number of sections in the data source.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_21numberOfRowsInSectionSiSo07UITableE0C_SitF":{"name":"tableView(_:numberOfRowsInSection:)","abstract":"

    Returns the number of items in the specified section.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_23titleForHeaderInSectionSSSgSo07UITableE0C_SitF":{"name":"tableView(_:titleForHeaderInSection:)","abstract":"

    Returns the title for the specified section’s header.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_23titleForFooterInSectionSSSgSo07UITableE0C_SitF":{"name":"tableView(_:titleForFooterInSection:)","abstract":"

    Returns the title for the specified section’s footer.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_12cellForRowAtSo07UITableE4CellCSo0lE0C_10Foundation9IndexPathVtF":{"name":"tableView(_:cellForRowAt:)","abstract":"

    Returns a cell for row at specified index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_12canEditRowAtSbSo07UITableE0C_10Foundation9IndexPathVtF":{"name":"tableView(_:canEditRowAt:)","abstract":"

    Returns whether it is possible to edit a row at given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_12canMoveRowAtSbSo07UITableE0C_10Foundation9IndexPathVtF":{"name":"tableView(_:canMoveRowAt:)","abstract":"

    Returns whether it is possible to move a row at given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_6commit8forRowAtySo07UITableE0C_So0lE16CellEditingStyleV10Foundation9IndexPathVtF":{"name":"tableView(_:commit:forRowAt:)","abstract":"

    Performs the edit action for a row at given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html#/s:19DiffableDataSources09TableViewaB6SourceC05tableE0_9moveRowAt2toySo07UITableE0C_10Foundation9IndexPathVAKtF":{"name":"tableView(_:moveRowAt:to:)","abstract":"

    Moves a row at given index path.

    ","parent_name":"TableViewDiffableDataSource"},"Classes/TableViewDiffableDataSource.html":{"name":"TableViewDiffableDataSource","abstract":"

    A class for backporting UITableViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+."},"Classes/CollectionViewDiffableDataSource.html":{"name":"CollectionViewDiffableDataSource","abstract":"

    A class for backporting UICollectionViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+."},"DataSources.html":{"name":"DataSources"},"Snapshot.html":{"name":"Snapshot"}} \ No newline at end of file