Copyright © 2001-2003 Richard Carlsson
Authors: Richard Carlsson (richardc@csd.uu.se).
See also: edoc.
t_atom() = #t_atom{a = list(), val = atom()}
t_def() = #t_def{name = t_name(), type = type()}
t_field() = #t_field{a = list(), name = type(), type = type()}
t_float() = #t_float{a = list(), val = float()}
t_fun() = #t_fun{a = list(), args = [type()], range = type()}
t_integer() = #t_integer{a = list(), val = integer()}
t_list() = #t_list{a = list(), type = type()}
t_name() = #t_name{app = [] | atom(), module = [] | atom(), name = [] | atom()}
t_nil() = #t_nil{a = list()}
t_record() = #t_list{a = list(), name = type(), fields = [field()]}
t_spec() = #t_spec{name = t_name(), type = t_type(), defs = [t_def()]}
t_throws() = #t_throws{type = type(), defs = [t_def()]}
t_tuple() = #t_tuple{a = list(), types = [type()]}
t_type() = #t_type{a = list(), name = t_name(), args = [type()]}
t_typedef() = #t_typedef{name = t_name(), args = [type()], type = type(), defs = [t_def()]}
t_union() = #t_union{a = list(), types = [type()]}
t_var() = #t_var{a = list(), name = [] | atom()}
type() = t_atom() | t_fun() | t_integer() | t_list() | t_nil() | t_tuple() | t_type() | t_union() | t_var()
arg_names/1 | |
is_predefined/1 | |
set_arg_names/2 | |
to_label/1 | |
to_ref/1 | |
to_xml/2 |