TKCollectionsQueryMatching

enum TKCollectionsQueryMatching {}

Query enum declaring in which manner the related parameter should be treated.

  • Matching rule stating ANY of the queried criteria needs to be met.

    Declaration

    Objective-C

    TKCollectionsQueryMatchingAny = 0

    Swift

    case any = 0
  • Matching rule stating ALL of the queried criteria need to be met.

    Declaration

    Objective-C

    TKCollectionsQueryMatchingAll = 1

    Swift

    case all = 1