Proposal for Dual Function Support in Schema for Enhanced Clarity

Is there a reason Schema doesn't/shouldn't support dual functions like the rest of Effect? While I use
pipe
wherever it makes sense, there are cases e.g.
pipe(input.requestBody.redirect_uri, S.is(client.redirectURI))

which would be so much clearer as:
S.is(input.requestBody.redirect_uri, client.redirectURI)
Was this page helpful?