GLSearchMatchType

Objective-C

enum GLSearchMatchType : uint8_t {}

Swift

@frozen enum GLSearchMatchType : UInt8, @unchecked Sendable

Search matching functions

  • Start of the word is equal to query

    Declaration

    Objective-C

    GLSearchMatchType_WordStart

    Swift

    case wordStart = 0
  • Whole word is equal to query

    Declaration

    Objective-C

    GLSearchMatchType_Word

    Swift

    case word = 1
  • Whole phrase is equal to query

    Declaration

    Objective-C

    GLSearchMatchType_Exact

    Swift

    case exact = 2