The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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)