-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).