You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rhs is not required for evaluation of the predicate (because it is constant), so this refinement should be possible at compile-time. The same is true for val x: List[Int] @@ Not[False] = List(1, 2, 3).
The text was updated successfully, but these errors were encountered:
This removes the notion of "constant" `Validate` instances
that allowed to refine non-literal values at compile-time.
This feature hasn't proven to be useful after all.
See #26 for the original issue that introduced constant
predicates.
The rhs is not required for evaluation of the predicate (because it is constant), so this refinement should be possible at compile-time. The same is true for
val x: List[Int] @@ Not[False] = List(1, 2, 3)
.The text was updated successfully, but these errors were encountered: