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
Sometimes, a local combinator just needs to restore an old state, as opposed to adjusting it on entry. This can be captured by reg.local(identity _)(p), but this could be more concisely represented as reg.local(p) -- so long as this does not cause inference problems with the existing local combinator that takes a Parsley[A => A]
The text was updated successfully, but these errors were encountered:
Sometimes, a
local
combinator just needs to restore an old state, as opposed to adjusting it on entry. This can be captured byreg.local(identity _)(p)
, but this could be more concisely represented asreg.local(p)
-- so long as this does not cause inference problems with the existinglocal
combinator that takes aParsley[A => A]
The text was updated successfully, but these errors were encountered: