नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Binary.Buffer(binary as nullable binary) as nullable binary
About
Buffers the binary value in memory. The result of this call is a stable binary value, which means it will have a deterministic length and order of bytes.
Example 1
Create a stable version of the binary value.
Usage
Binary.Buffer(Binary.FromList({0..10}))
Output
#binary({0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10})