X-Git-Url: https://git.xandkar.net/?p=hope.git;a=blobdiff_plain;f=src%2Fhope_list.erl;fp=src%2Fhope_list.erl;h=b5edf42cee87533dc8d630334a175c78b7326756;hp=63d9c990c389e5b2e22efb6835874f07f36f4c9f;hb=fcfc097ab895201de0cf21ebd89a8039b37bf25a;hpb=347e63e68cda29d5fdcf5ffc0d551cc6d7a9bc6d diff --git a/src/hope_list.erl b/src/hope_list.erl index 63d9c99..b5edf42 100644 --- a/src/hope_list.erl +++ b/src/hope_list.erl @@ -12,16 +12,14 @@ , map_slow/2 , map_result/2 % Not tail-recursive , first_match/2 + , divide/2 ]). - -define(DEFAULT_RECURSION_LIMIT, 1000). - -type t(A) :: [A]. - %% @doc Tail-recursive equivalent of lists:map/2 %% @end -spec map([A], fun((A) -> (B))) -> @@ -74,7 +72,6 @@ map([X1, X2, X3, X4, X5 | Xs], F, RecursionLimit, RecursionCount) -> map_slow(Xs, F) -> lists:reverse(map_rev(Xs, F)). - %% @doc Tail-recursive alternative to lists:map/2, which accumulates and %% returns list in reverse order. %% @end @@ -129,3 +126,28 @@ first_match([{Tag, F} | Tests], X) -> of true -> {some, Tag} ; false -> first_match(Tests, X) end. + +%% @doc Divide list into sublists of up to a requested size + a remainder. +%% Order unspecified. Size < 1 raises an error: +%% `hope_list__divide__size_must_be_a_positive_integer' +%% @end +-spec divide([A], pos_integer()) -> + [[A]]. +divide(_, Size) when Size < 1 orelse not is_integer(Size) -> + % Q: Why? + % A: For N < 0, what does it mean to have a negative-sized chunk? + % For N = 0, we can imagine that a single chunk is an empty list, but, + % how many such chunks should we produce? + % This is pretty-much equivalnet to the problem of deviding something by 0. + error(hope_list__divide__size_must_be_a_positive_integer); +divide([], _) -> + []; +divide([X1 | Xs], MaxChunkSize) -> + MoveIntoChunks = + fun (X2, {Chunk, Chunks, ChunkSize}) when ChunkSize >= MaxChunkSize -> + {[X2], [Chunk | Chunks], 1} + ; (X2, {Chunk, Chunks, ChunkSize}) -> + {[X2 | Chunk], Chunks, ChunkSize + 1} + end, + {Chunk, Chunks, _} = lists:foldl(MoveIntoChunks, {[X1], [], 1}, Xs), + [Chunk | Chunks].