Interface IQueryable<TBeliefSet>
Represents an interface for executing queries on a belief set.
public interface IQueryable<in TBeliefSet> : IAction<TBeliefSet> where TBeliefSet : IBeliefSet
Type Parameters
TBeliefSetThe type of the query object.
- Inherited Members
- Extension Methods
Methods
Query(TBeliefSet)
Executes a query on the specified belief set.
bool Query(TBeliefSet beliefSet)
Parameters
beliefSetTBeliefSetThe belief set to query.
Returns
- bool
A boolean value indicating whether the query executed successfully or not.