Current section

Files

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

src/cake@internal@stdlib@stringx.erl

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