首页 > 代码库 > erlang自定义数据类型

erlang自定义数据类型

Erlang系统自带的基础数据类型有:atom、tuple、list、binary、pid、float、number、port、reference、record。

用户可以通过通过命令type来自定义数据类型,实现方法:

-type device() :: atom() | pid().

-type prompt() :: atom() | string().

定义完后,可以在模块中使用export_type,将用户自定义类型导出,以便其他模块重用。

-type env() :: [{atom(), any()}].
-export_type([env/0]).