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
I need to ponder how I feel about the overloading of == and similar.
There’s this not in the documentation: “x == y implies y == x” which made me ponder the constraint 15 == view.left. While it’s not necessarily how I’d think about auto layout, it is possible to enable Pinocchio to create that (and have it equal view.left == 15). Same goes for >= and <=
(And now I’m wondering if there’s a case in Auto Layout where attribute1 == multiplier × attribute2 + constant != attribute2 == attribute1 / multiplier - (constant / multiplier))
The text was updated successfully, but these errors were encountered:
I need to ponder how I feel about the overloading of
==
and similar.There’s this not in the documentation: “
x == y
impliesy == x
” which made me ponder the constraint15 == view.left
. While it’s not necessarily how I’d think about auto layout, it is possible to enable Pinocchio to create that (and have it equalview.left == 15
). Same goes for>=
and<=
(And now I’m wondering if there’s a case in Auto Layout where
attribute1 == multiplier × attribute2 + constant
!=attribute2 == attribute1 / multiplier - (constant / multiplier)
)The text was updated successfully, but these errors were encountered: