func append(String)
Appends the given string to this string.
与えられた文字列をこの文字列へ加えます。
func append(Character)
Appends the given character to the string.
与えられた文字を文字列へ加えます。
func append<S>(contentsOf : S)
Appends the characters in the given sequence to the string.
与えられたシーケンスの中の文字を文字列へ追加します。
func reserveCapacity (Int)
Reserves enough space in the string’s underlying storage to store the specified number of ASCII characters.
指定された数のASCII文字を格納するのに十分な空間を文字列のもつ基礎をなすストレージの中に確保します。
static func + <Other>(Other, String) -> String
Creates a new collection by concatenating the elements of a sequence and a collection.
あるシーケンスとあるコレクションの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(String, Other) -> String
Creates a new collection by concatenating the elements of a collection and a sequence.
あるコレクションとあるシーケンスの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(String, Other) -> String
Creates a new collection by concatenating the elements of two collections.
2つのコレクションの要素を連結することによって新しいコレクションを作成します。
static func += <Other>(inout String, Other)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。