Packages

Bindings for Erlang's ETS tables. Forked and updated from gts.

Current section

Files

Jump to
carpenter src carpenter.erl
Raw

src/carpenter.erl

-module(carpenter).
-export([new_table/2]).
new_table(Name, Options) ->
try
{ok, ets:new(Name, Options)}
catch
error:badarg -> {error, nil}
end.