vote up 3 vote down star

I am new to Erlang. Found the following -module attribute declaration in an existing Erlang project:

-module(mod_name, [Name, Path, Version]).

What does mean the second parameter (list [Name, Path, Version]) here?

I haven't found any information in the Erlang reference on it.

flag

69% accept rate
1  
Parameterised modules are not yet officially part of Erlang although the current distributions support them. Also to be safe, except for new, you should never call functions in a parameteised modules directly. Always use the eference returned from new. – rvirding Sep 1 at 12:06

2 Answers

vote up 7 vote down check

This defines a parameterised erlang module - one you can "instantiate" with new and then access the parameters passed by that new when executing code in your module.

A very brief overview is here:

http://myotherpants.com/2009/04/parameterized-modules-in-erlang/

link|flag
vote up 3 vote down

This is a parametrized module. Here is the original paper on it. Basically you can create instances of the module binding specific values to those variables. You can initialize one as:

> Mod = mod_name:new("MyName", "/path", '0.1').

and then call its functions as:

> Mod:function(...)

where the module parameters are also available in the function body.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.