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
We've considered an aug form to "augment" the flow:
(-< _ f ...)
(-< f ... _)
But since it's unclear whether to augment on the right or the left, it didn't seem that useful as a distinct form. Upon further reflection, we could have the aug form respect the current chirality, so that:
(~> (aug f ...))
would be equivalent to
(~> (-< f ... _))
and
(~>> (aug f ...))
would be equivalent to
(~> (-< _ f ...))
The text was updated successfully, but these errors were encountered:
We've considered an
aug
form to "augment" the flow:But since it's unclear whether to augment on the right or the left, it didn't seem that useful as a distinct form. Upon further reflection, we could have the
aug
form respect the current chirality, so that:would be equivalent to
and
would be equivalent to
The text was updated successfully, but these errors were encountered: