StructureByte
ByteCountFormatStyle.Units
No overview available. 概要は利用可能でありません。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
struct ByteCountFormatStyle
.Units
Topics 話題
Type Aliases 型エイリアス
Initializers イニシャライザ
init()
Creates an empty option set.
空のオプションセットを作成します。
init<S>(S)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。
init(arrayLiteral : ByteCountFormatStyle.Units...)
Creates a set containing the elements of the given array literal.
与えられた配列リテラルの要素を含んでいる集合を作成します。
init(from: Decoder)
Creates a new instance by decoding from the given decoder, when the type’s
RawValue
is UInt
.
新しいインスタンスをこの与えられたデコーダからデコードすることによって作成します、型のもつRawValue
がUInt
である場合。
Instance Properties インスタンスプロパティ
var isEmpty : Bool
A Boolean value that indicates whether the set has no elements.
集合が要素をひとつも持たないかどうかを指し示すブール値。
Type Properties 型プロパティ
Instance Methods インスタンス メソッド
func contains(ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether a given element is a member of the option set.
与えられた要素がオプションセットのメンバであるかどうかを指し示すブール値を返します。
func encode(to: Encoder)
Encodes this value into the given encoder, when the type’s
RawValue
is UInt
.
この値をその与えられたデコーダへとデコードします、その型のもつRawValue
がUInt
である場合。
func formIntersection (ByteCountFormatStyle.Units)
Removes all elements of this option set that are not also present in the given set.
このオプションセットに属し、また与えられたセットの中に含まれない、すべての要素を除去します。
func formSymmetricDifference (ByteCountFormatStyle.Units)
Replaces this set with a new set containing all elements contained in either this set or the given set, but not in both.
このセットを、このセットか与えられたセットのどちらかの中に、しかし両方ではなく、含まれるすべての要素を含んでいる新しいセットで置き換えます。
func formUnion (ByteCountFormatStyle.Units)
Inserts the elements of another set into this option set.
別のセットの要素をこのオプションセットへと挿入します。
func insert(ByteCountFormatStyle.Units) -> ( inserted: Bool, memberAfterInsert : ByteCountFormatStyle.Units)
Adds the given element to the option set if it is not already a member.
与えられた要素を、それがすでにメンバでないならばオプションセットに加えます。
func intersection(ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units
Returns a new option set with only the elements contained in both this set and the given set.
このセットと与えられたセットの両方の中に含まれる要素だけを持つ新しいオプションセットを返します。
func isDisjoint (with: ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether the set has no members in common with the given set.
この集合が、与えられた集合と共通のメンバを1つも持たないかどうかを指し示すブール値を返します。
func isStrictSubset (of: ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether this set is a strict subset of the given set.
この集合は与えられた集合の狭義の下位集合であるかどうかを指し示すブール値を返します。
func isStrictSuperset (of: ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether this set is a strict superset of the given set.
この集合は与えられた集合の狭義の上位集合であるかどうかを指し示すブール値を返します。
func isSubset (of: ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether the set is a subset of another set.
この集合は別の集合の下位集合であるかどうかを指し示すブール値を返します。
func isSuperset (of: ByteCountFormatStyle.Units) -> Bool
Returns a Boolean value that indicates whether the set is a superset of the given set.
この集合が、与えられた集合の上位集合であるかどうかを指し示すブール値を返します。
func remove(ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units?
Removes the given element and all elements subsumed by it.
与えられた要素とそれによって包括されるすべての要素を除去します。
func subtract(ByteCountFormatStyle.Units)
Removes the elements of the given set from this set.
与えられた集合の要素をこの集合から除去します。
func subtracting(ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units
Returns a new set containing the elements of this set that do not occur in the given set.
与えられた集合の中の現れないこの集合の要素を含んでいる新しい集合を返します。
func symmetricDifference (ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units
Returns a new option set with the elements contained in this set or in the given set, but not in both.
このセットの中にまたは与えられたセットの中に、しかし両方の中にではなく、含まれる要素からなる新しいオプションセットを返します。
func union(ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units
Returns a new option set of the elements contained in this set, in the given set, or in both.
このセットの中に、与えられたセットの中に、または両方の中に、含まれる要素からなる新しいオプションセットを返します。
func update(with: ByteCountFormatStyle.Units) -> ByteCountFormatStyle.Units?
Inserts the given element into the set.
与えられた要素をセットへと挿入します。