Current section
Files
Jump to
Current section
Files
src/erlang_commons.erl
-module(erlang_commons).
%% API exports
-export([for/3]).
%%====================================================================
%% API functions
%%====================================================================
% 自定义for循环
for(Max, Max, F) -> [F(Max)];
for(I, Max, F) -> [F(I) | for((I+1), Max, F)].
%%====================================================================
%% Internal functions
%%====================================================================