Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions phlex/core/graph_proxy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,11 @@ namespace phlex::experimental {
auto unfold(std::string name,
is_predicate_like auto pred,
auto unf,
concurrency c = concurrency::serial)
concurrency c = concurrency::serial,
std::string destination_data_layer = "")
{
return create_glue(false).unfold(std::move(name), std::move(pred), std::move(unf), c);
return glue<Splitter>{graph_, nodes_, nullptr, errors_, config_}.unfold(
std::move(name), std::move(pred), std::move(unf), c, std::move(destination_data_layer));
}

auto output(std::string name, is_output_like auto f, concurrency c = concurrency::serial)
Expand Down
Loading