Current section

Files

Jump to
cake src cake@stdlib@stringx.erl
Raw

src/cake@stdlib@stringx.erl

-module(cake@stdlib@stringx).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([map_join/3]).
-spec map_join(list(ONA), fun((ONA) -> binary()), binary()) -> binary().
map_join(L, M, J) ->
_pipe = L,
_pipe@1 = gleam@list:map(_pipe, M),
gleam@string:join(_pipe@1, J).