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


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


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

用法一

concat(docs)
@spec concat([t()]) :: t()

连接返回新文档的文档列表。

例子

iex> doc = Inspect.Algebra.concat(["a", "b", "c"])
iex> Inspect.Algebra.format(doc, 80)
["a", "b", "c"]

用法二

concat(doc1, doc2)
@spec concat(t(), t()) :: t()

连接两个返回新文档的文档实体。

例子

iex> doc = Inspect.Algebra.concat("hello", "world")
iex> Inspect.Algebra.format(doc, 80)
["hello", "world"]

相关用法


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