Instance Method
インスタンスメソッド
subdata(with:)
Returns a new data object containing the data object's bytes that fall within the limits specified by a given range.
データオブジェクトの持つバイトで、ある与えられた範囲によって指定される制限内に収まるものを含んでいる新しいデータオブジェクトを返します。
Parameters
パラメータ
range
The range in the receiver from which to get the data. If this range is not within the data object's range of bytes, rangeException
is raised.
レシーバの中のこの範囲からデータを取得します。この範囲がデータオブジェクトの持つバイト範囲内でないならば、rangeException
が引き起こされます。
Return Value
戻り値
A data object containing the receiver’s bytes that fall within the limits specified by range
.
レシーバの持つバイトで、range
によって指定される制限内に収まるものを含んでいるデータオブジェクト。
Discussion
議論
A sample using this method can be found in Working With Binary Data.
このメソッドを使う見本は、Working With Binary Dataで見つけることができます。