CspListOperators.LastOccurrence Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Creates a term that indicates whether the last occurrence of element in listVar is equal to indexToBe.

Namespace:  Microsoft.SolverFoundation.Solvers
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function LastOccurrence ( _
    solver As ConstraintSystem, _
    element As CspTerm, _
    listVar As CspTerm, _
    indexToBe As CspTerm _
) As CspTerm
public static CspTerm LastOccurrence(
    this ConstraintSystem solver,
    CspTerm element,
    CspTerm listVar,
    CspTerm indexToBe
)
[ExtensionAttribute]
public:
static CspTerm^ LastOccurrence(
    ConstraintSystem^ solver, 
    CspTerm^ element, 
    CspTerm^ listVar, 
    CspTerm^ indexToBe
)
static member LastOccurrence : 
        solver:ConstraintSystem * 
        element:CspTerm * 
        listVar:CspTerm * 
        indexToBe:CspTerm -> CspTerm 
public static function LastOccurrence(
    solver : ConstraintSystem, 
    element : CspTerm, 
    listVar : CspTerm, 
    indexToBe : CspTerm
) : CspTerm

Parameters

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A Boolean term that indicates whether the last occurrence of element in listVar is equal to indexToBe.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConstraintSystem. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

CspListOperators Class

Microsoft.SolverFoundation.Solvers Namespace