There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

Erlang::Parser::Node::DefList - a list of definitions for one function

DESCRIPTION

A set of definitions (alternative matches) for one function.

Accessors

defs

A list of Erlang::Parser::Node::Defs.

Methods

print

Pretty-prints the node to its filehandle argument.

EXAMPLE

fac(0) ->
	1;
fac(N) ->
	N * fac(N - 1)