BinaryFormat.Transform
Sintassi
BinaryFormat.Transform(binaryFormat as function, function as function) as function
Informazioni su
Restituisce un formato binario che trasformerà i valori letti da un altro formato binario. Il parametro binaryFormat
specifica il formato binario che verrà usato per leggere il valore.
function
viene richiamato con il valore letto e restituisce il valore trasformato.
Esempio 1
Leggere un byte e aggiungere uno.
Utilizzo
let
binaryData = #binary({1}),
transformFormat = BinaryFormat.Transform(
BinaryFormat.Byte,
(x) => x + 1
)
in
transformFormat(binaryData)
Output
2