| Class | Runt::Diff |
| In: |
lib/runt/temporalexpression.rb
|
| Parent: | Object |
TExpr that will be true only if the first of its two contained expressions is true and the second is false.
| expr1 | [R] | |
| expr2 | [R] |
# File lib/runt/temporalexpression.rb, line 176 def initialize(expr1, expr2) @expr1 = expr1 @expr2 = expr2 end