Ejemplo n.º 1
0
 public DerivedGraphUnary(IGraphiteGraph operand, Func <double?, double?> operation, Func <string, string> nameTransform)
 => (_operand, _operation, _nameTransform) = (operand, operation, nameTransform);
Ejemplo n.º 2
0
 public DerivedGraphBinary(IGraphiteGraph leftOperand, IGraphiteGraph rightOperand, Func <double?, double?, double?> operation)
 => (_leftOperand, _rightOperand, _operation) = (leftOperand, rightOperand, operation);
 public DerivedGraphTransform(IGraphiteGraph operand, Func <IEnumerable <double?>, IEnumerable <double?> > transform)
 => (_operand, _transform) = (operand, transform);