|
Basic Syntax for Dynamic Logic |
Top Previous Next |
|
OR “ || “ is used to join multiple dynamic statements in an ‘OR’ relationship
EXAMPLE: (121212 in <<Cart_CategoryChosenHistory>> || 343434 in <<Cart_CategoryChosenHistory>>)
--The statement would be true if either 121212 or 343434 were in <<Cart_CategoryChosenHistory>>
AND “ && “ is used to join multiple dynamic statements in an ‘AND’ relationship
EXAMPLE: (121212 in <<Cart_CategoryChosenHistory>> && 343434 in <<Cart_CategoryChosenHistory>>)
--The statement would be true ONLY if both 121212 and 343434 were in <<Cart_CategoryChosenHistory>>
EQUALS “ == “ is used to show an equality between values and fields
EXAMPLE: 1 == <<Order_Waitlist_Distribution>> will be true if there is a waitlist in the Order (1 is the value for a waitlist being in a purchase) |