Class TransformationRuleBase<T>
This class is used to describe transformation rules that have more than two input arguments
Inherited Members
Namespace: NMF.Transformations
Assembly: NMF.Transformations.dll
Syntax
public abstract class TransformationRuleBase<T> : GeneralTransformationRule
Type Parameters
Name | Description |
---|---|
T | The type of the transformation rule output |
Properties
| Edit this page View SourceOutputType
Gets the type signature of the output type of this transformation
Declaration
public override Type OutputType { get; }
Property Value
Type | Description |
---|---|
Type |
Overrides
Methods
| Edit this page View SourceGetRule(Type)
Gets the rule with the specified type (exact match)
Declaration
public GeneralTransformationRule GetRule(Type type)
Parameters
Type | Name | Description |
---|---|---|
Type | type | The type of the transformation rule |
Returns
Type | Description |
---|---|
GeneralTransformationRule | The transformation rule with this type or null, if there is none |
Remarks
This method assumes there is only one transformation rule per type
MarkInstantiatingFor(GeneralTransformationRule, Predicate<object[]>)
Marks the current transformation rule instantiating for the specified rule
Declaration
public void MarkInstantiatingFor(GeneralTransformationRule rule, Predicate<object[]> filter)
Parameters
Type | Name | Description |
---|---|---|
GeneralTransformationRule | rule | The transformation rule |
Predicate<object[]> | filter | The filter that should filter the inputs where this transformation rule is marked instantiating |