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]).
原文地址:http://www.cnblogs.com/yanllearnn/p/3832939.html