这个对二进制文件执行 BSL 的 Erlang 函数是如何工作的?

发布于 2024-11-18 12:44:59 字数 289 浏览 3 评论 0原文

有人可以简单地解释一下,这个代码片段是如何来自 这里之前的答案有效吗?

bbsl(Bin,Shift) -> <<_:Shift,Rest/bits>> = Bin, <<Rest/bits,0:Shift>>.

Can someone dumb it down and explain, how this code fragment from a previous answer here works ?

bbsl(Bin,Shift) -> <<_:Shift,Rest/bits>> = Bin, <<Rest/bits,0:Shift>>.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春如此纠结 2024-11-25 12:45:00
bbsl(Bin, Shift) ->     % function accepts binary and number
  << _:Shift,           % match Shift number of bits into dummy variable _ and
     Rest/bits>> = Bin, % puts rest of the bits into Rest variable from Bin variable

  << Rest/bits,         % start creating new binary with bits from Rest at beginning
     0:Shift >>.        % and Shift number of 0's in the end

希望这是有道理的

bbsl(Bin, Shift) ->     % function accepts binary and number
  << _:Shift,           % match Shift number of bits into dummy variable _ and
     Rest/bits>> = Bin, % puts rest of the bits into Rest variable from Bin variable

  << Rest/bits,         % start creating new binary with bits from Rest at beginning
     0:Shift >>.        % and Shift number of 0's in the end

hope that made sense

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文