Skip to content
Open
Changes from all 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
7 changes: 5 additions & 2 deletions phlex/core/graph_proxy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,12 @@ 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