Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 825 Bytes

File metadata and controls

38 lines (28 loc) · 825 Bytes
description Learn more about: BinaryFormat.Transform
title BinaryFormat.Transform
ms.subservice m-source
ms.topic reference

BinaryFormat.Transform

Syntax

BinaryFormat.Transform(binaryFormat as function, function as function) as function

About

Returns a binary format that will transform the values read by another binary format. The binaryFormat parameter specifies the binary format that will be used to read the value. The function is invoked with the value read, and returns the transformed value.

Example 1

Read a byte and add one to it.

Usage

let
    binaryData = #binary({1}),
    transformFormat = BinaryFormat.Transform(
        BinaryFormat.Byte,
        (x) => x + 1
    )
in
    transformFormat(binaryData)

Output

2