当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Inspect.Algebra.format用法及代码示例


Elixir语言中 Inspect.Algebra.format 相关用法介绍如下。

用法:

format(doc, width)
@spec format(t(), non_neg_integer() | :infinity) :: iodata()

为给定宽度格式化给定文档。

将最大宽度和要打印的文档作为其参数,并返回文档最佳布局的 IO 数据表示以适合给定宽度。

文档开始是平的(没有中断),直到找到一个组。

例子

iex> doc = Inspect.Algebra.glue("hello", " ", "world")
iex> doc = Inspect.Algebra.group(doc)
iex> doc |> Inspect.Algebra.format(30) |> IO.iodata_to_binary()
"hello world"
iex> doc |> Inspect.Algebra.format(10) |> IO.iodata_to_binary()
"hello\nworld"

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Inspect.Algebra.format(doc, width)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。