Binary.Range
オフセットで始まるバイナリ値のサブセットを返します。
Syntax
Binary.Range(
binary as binary,
offset as number,
optional count as number
) as binary
Remarks
オフセット binary
で始まるバイナリ値のサブセットを返します。省略可能なパラメーター offset
では、そのサブセットの最大長を設定します。
Examples
Example #1
オフセット 6 で始まるバイナリ値のサブセットを返します。
Binary.Range(#binary({0..10}), 6)
Result:
#binary({6, 7, 8, 9, 10})
Example #2
バイナリ値のオフセット 6 から長さが 2 のサブセットを返します。
Binary.Range(#binary({0..10}), 6, 2)
Result:
#binary({6, 7})
Category
Binary