當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir Inspect.Algebra.fold_doc用法及代碼示例


Elixir語言中 Inspect.Algebra.fold_doc 相關用法介紹如下。

用法:

fold_doc(docs, folder_fun)
@spec fold_doc([t()], (t(), t() -> t())) :: t()

使用給定的文件夾函數將文檔列表折疊成文檔。

文件列表“從右側”折疊;在這方麵,此函數類似於 List.foldr/3 ,不同之處在於它不需要初始累加器,而是使用 docs 的最後一個元素作為初始累加器。

例子

iex> docs = ["A", "B", "C"]
iex> docs =
...>   Inspect.Algebra.fold_doc(docs, fn doc, acc ->
...>     Inspect.Algebra.concat([doc, "!", acc])
...>   end)
iex> Inspect.Algebra.format(docs, 80)
["A", "!", "B", "!", "C"]

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Inspect.Algebra.fold_doc(docs, folder_fun)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。