Skip to content

Commit

Permalink
fixup! fixup! refactor(hydroflow_lang): require lifetime on `perist*(…
Browse files Browse the repository at this point in the history
…)` operators
  • Loading branch information
MingweiSamuel committed Jul 2, 2024
1 parent 4bc78c7 commit d9bf06f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: hydroflow/tests/surface_singleton.rs
expression: "df.meta_graph().unwrap().to_dot(&Default::default())"
expression: "df.meta_graph().unwrap().to_dot(& Default :: default())"
---
digraph {
node [fontname="Monaco,Menlo,Consolas,"Droid Sans Mono",Inconsolata,"Courier New",monospace", style=filled];
Expand All @@ -14,7 +14,7 @@ digraph {
n7v1 [label="(n7v1) for_each(|x| filter_send.send(x).unwrap())", shape=house, fillcolor="#ffff88"]
n8v1 [label="(n8v1) map(|x| (context.current_tick(), x.into_reveal()))", shape=invhouse, fillcolor="#88aaff"]
n9v1 [label="(n9v1) for_each(|x| max_send.send(x).unwrap())", shape=house, fillcolor="#ffff88"]
n10v1 [label="(n10v1) persist()", shape=invhouse, fillcolor="#88aaff"]
n10v1 [label="(n10v1) persist::<'static>()", shape=invhouse, fillcolor="#88aaff"]
n2v1 -> n3v1 [color=darkgreen, style=dashed]
n3v1 -> n4v1 [color=darkgreen, style=dashed]
n6v1 -> n7v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: hydroflow/tests/surface_singleton.rs
expression: "df.meta_graph().unwrap().to_mermaid(&Default::default())"
expression: "df.meta_graph().unwrap().to_mermaid(& Default :: default())"
---
%%{init:{'theme':'base','themeVariables':{'clusterBkg':'#ddd','clusterBorder':'#888'}}}%%
flowchart TD
Expand All @@ -17,7 +17,7 @@ linkStyle default stroke:#aaa
7v1[/"(7v1) <code>for_each(|x| filter_send.send(x).unwrap())</code>"\]:::pushClass
8v1[\"(8v1) <code>map(|x| (context.current_tick(), x.into_reveal()))</code>"/]:::pullClass
9v1[/"(9v1) <code>for_each(|x| max_send.send(x).unwrap())</code>"\]:::pushClass
10v1[\"(10v1) <code>persist()</code>"/]:::pullClass
10v1[\"(10v1) <code>persist::&lt;'static&gt;()</code>"/]:::pullClass
2v1-.->3v1; linkStyle 0 stroke:#060
3v1-.->4v1; linkStyle 1 stroke:#060
6v1-->7v1
Expand Down

0 comments on commit d9bf06f

Please sign in to comment.