func formIntersection (CharacterSet)
Sets the value to an intersection of the
CharacterSet
with another CharacterSet
.
値をこのCharacterSet
と別のCharacterSet
の交差に設定します。
func formSymmetricDifference (CharacterSet)
Sets the value to an exclusive or of the
CharacterSet
with another CharacterSet
.
値をこのCharacterSet
と別のCharacterSet
の排他的論理和に設定します。
func formUnion (CharacterSet)
Sets the value to a union of the
CharacterSet
with another CharacterSet
.
値をこのCharacterSet
と別のCharacterSet
の和集合に設定します。
func hasMember (inPlane : UInt8) -> Bool
Returns true if the
CharacterSet
has a member in the specified plane.
CharacterSet
が指定された水準でのメンバを持つならばtrueを返します。
func insert(charactersIn : String)
Insert the values from the specified string into the
CharacterSet
.
指定された文字列からの値をCharacterSet
に挿入します。
func intersection(CharacterSet) -> CharacterSet
Returns an intersection of the
CharacterSet
with another CharacterSet
.
このCharacterSet
と別のCharacterSet
の交差を返します。
func invert()
Invert the contents of the
CharacterSet
.
CharacterSet
の内容を逆にします。
func isStrictSubset (of: CharacterSet) -> Bool
Returns a Boolean value that indicates whether this set is a strict subset of the given set.
この集合は与えられた集合の狭義の下位集合であるかどうかを指し示すブール値を返します。
func isStrictSuperset (of: CharacterSet) -> Bool
Returns a Boolean value that indicates whether this set is a strict superset of the given set.
この集合は与えられた集合の狭義の上位集合であるかどうかを指し示すブール値を返します。
func isSubset (of: CharacterSet) -> Bool
Returns a Boolean value that indicates whether the set is a subset of another set.
この集合は別の集合の下位集合であるかどうかを指し示すブール値を返します。
func isSuperset (of: CharacterSet) -> Bool
Returns true if
self
is a superset of other
.
self
がother
の上位集合ならばtrueを返します。
func remove(charactersIn : String)
Remove the values from the specified string from the
CharacterSet
.
指定された文字列からの値をCharacterSet
から取り除きます。
func subtracting(CharacterSet) -> CharacterSet
Returns a
CharacterSet
created by removing elements in other
from self
.
other
の中の要素をself
から取り除くことで作成されるCharacterSet
を返します。
func symmetricDifference (CharacterSet) -> CharacterSet
Returns an exclusive or of the
CharacterSet
with another CharacterSet
.
このCharacterSet
と別のCharacterSet
の排他的論理和を返します。
func union(CharacterSet) -> CharacterSet
Returns a union of the
CharacterSet
with another CharacterSet
.
このCharacterSet
と別のCharacterSet
の和集合を返します。