Structure

Unicode.Scalar

A Unicode scalar value. あるユニコードスカラー値。

Declaration 宣言

@frozen struct Scalar

Overview 概要

The Unicode.Scalar type, representing a single Unicode scalar value, is the element type of a string’s unicodeScalars collection. 単一のユニコードスカラー値を表している、Unicode.Scalar型は、ある文字列のもつunicodeScalarsコレクションの要素型です。

You can create a Unicode.Scalar instance by using a string literal that contains a single character representing exactly one Unicode scalar value. あなたは、Unicode.Scalarインスタンスを、厳密に1つのユニコードスカラー値を表している単一の文字を含んでいる文字列リテラルを使うことによって作成できます。


let letterK: Unicode.Scalar = "K"
let kim: Unicode.Scalar = "김"
print(letterK, kim)
// Prints "K 김"

You can also create Unicode scalar values directly from their numeric representation. あなたはまた、ユニコードスカラー値を直接にそれらの数値表現から作成することができます。


let airplane = Unicode.Scalar(9992)!
print(airplane)
// Prints "✈︎"

Topics 話題

Creating a Scalar スカラーを作成する

Inspecting a Scalar スカラーを調査する

Printing and Displaying a Scalar スカラーをプリントおよび表示する

Comparing Scalars スカラーを比較する

Creating Ranges of Scalars スカラーの範囲を作成する

Type Aliases 型エイリアス

Instance Properties 様々なインスタンスプロパティ

Structures 構造体