Table of Contents

Interface ITuple

Namespace
NRules.RuleModel
Assembly
NRules.RuleModel.dll

Set of facts matched by the rules engine.

public interface ITuple

Properties

Count

Number of facts in the tuple.

int Count { get; }

Property Value

int

Facts

Facts in the tuple, representing a partial match in the engine's working memory.

IEnumerable<IFact> Facts { get; }

Property Value

IEnumerable<IFact>

Remarks

Facts in the tuple are stored in the reverse order.

See Also