Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions stdlib/public/core/UnicodeScalarProperties.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ extension Unicode.Scalar.Properties {
static var isWhitespace : Self { Self(1 &<< 45) }
static var isXIDContinue : Self { Self(1 &<< 46) }
static var isXIDStart : Self { Self(1 &<< 47) }
static var isNFDQuickCheck : Self { Self(1 &<< 48) }
}
}

Expand Down Expand Up @@ -739,6 +740,12 @@ extension Unicode.Scalar.Properties {
public var isEmojiModifierBase: Bool {
_binaryProperties.contains(.isEmojiModifierBase)
}

@_spi(_Unicode)
@available(SwiftStdlib 6.3, *)
public var _isNFDQuickCheck: Bool {
_binaryProperties.contains(.isNFDQuickCheck)
}
}

/// Case mapping properties.
Expand Down
Loading