Instance Property
インスタンスプロパティ
isIDContinue
A Boolean value indicating whether the scalar is one which is recommended to be allowed to appear in a non-starting position in a programming language identifier.
このスカラーがプログラム言語識別子において始まりでない位置で現れるのを許可されることを推奨されるものであるかどうかを指し示すブール値。
Technology
- Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
var isIDContinue: Bool
{ get }
Discussion
解説
Applications that store identifiers in NFKC normalized form should instead use isXIDContinue
to check whether a scalar is a valid identifier character.
NFKC正規化形式で識別子を格納するアプリケーションは、代わりにisXIDContinue
を使って、あるスカラーが有効な識別子文字であるかどうかを調べるべきです。
This property corresponds to the “ID_Continue” and the “Other_ID_Continue” properties in the Unicode Standard.