Example #1
0
 public override OutputMap[] Outputs(IGraphConnections graph, Metadata instance) => new[]
 {
     graph.Connect(ref Output, ref instance.Output)
 };
Example #2
0
 public override InputMap[] Inputs(IGraphConnections graph, Metadata instance) => new[]
 {
     graph.Connect(ref ValueA, ref instance.ValueA),
     graph.Connect(ref ValueB, ref instance.ValueB)
 };
 public override OutputMap[] Outputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Output, ref Output),
 };
Example #4
0
 public override InputMap[] Inputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Value, ref Value),
 };
Example #5
0
 public override InputMap[] Inputs(IGraphConnections graph) => new[]
 {
     graph.Connect(ref Node.Repetitions, ref Repetitions),
 };
Example #6
0
 public override InputMap[] Inputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Character, ref Character),
 };