GLSearchTagSetMask
Objective-C
enum GLSearchTagSetMask : uint8_t {}
Swift
struct GLSearchTagSetMask : OptionSet, @unchecked Sendable
Tag set mask allows to select multiple tag sets in search filter. When tag set is limited, less non relevant results will be found.
-
Empty set
Declaration
Objective-C
GLSearchTagSetMask_Empty = 0 -
Name of the object
Declaration
Objective-C
GLSearchTagSetMask_Name = (1 << GLSearchTagSet_Name)Swift
static var name: GLSearchTagSetMask { get } -
Alt name of the object
Declaration
Objective-C
GLSearchTagSetMask_AltName = (1 << GLSearchTagSet_AltName)Swift
static var altName: GLSearchTagSetMask { get } -
Street name and building number
Declaration
Objective-C
GLSearchTagSetMask_Address = (1 << GLSearchTagSet_Address)Swift
static var address: GLSearchTagSetMask { get } -
Administrative region
Declaration
Objective-C
GLSearchTagSetMask_Region = (1 << GLSearchTagSet_Region)Swift
static var region: GLSearchTagSetMask { get } -
All available info
Declaration
Objective-C
GLSearchTagSetMask_All = GLSearchTagSetMask_Name | GLSearchTagSetMask_AltName | GLSearchTagSetMask_Address | GLSearchTagSetMask_RegionSwift
static var all: GLSearchTagSetMask { get }
Install in Dash