Instance Method
インスタンスメソッド
invert()
Replaces all the characters in the receiver with all the characters it didn’t previously contain.
レシーバの中の全ての文字を、それが以前に含まない全ての文字と置き換えます。
Discussion
議論
Inverting a mutable character set, whether by invert()
or by inverted
, is much less efficient than inverting an immutable character set with inverted
.
ある可変文字集合を逆にすることは、invert()
によってであろうとinverted
によってであろうと、不変文字集合をinverted
で逆にするよりまったく効率的ではありません。
See Also
参照
Related Documentation
関連文書
var inverted: CharacterSet
A character set containing only characters that don’t exist in the receiver.
レシーバの中に存在しない文字のみを含んでいる文字集合。