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