AXE5PJ43T37DV36GECBPSDGPBDTVKG57BRKVS62XP7X7CYTZN77AC
Stream.filter(export, fn {export_name, {type, _idx}} -> type == :func end)
|> Enum.into(%{}, fn {n, {_, idx}} -> {idx, :erlang.binary_to_atom(n)} end)
Stream.filter(export, fn {_name, {type, _idx}} -> type == :func end)
|> Enum.into(%{}, fn {name, {_type, idx}} -> {idx, :erlang.binary_to_atom(name)} end)