Adding if-let, when-let, cond-let, etc? #1
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: suzanne.soy/anaphoric#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Should hygienic versions of these anaphoric macros be provided as well, where the user would specify an identifier to bind?
The syntax-parameter versions,
aif
,awhen
, andacond
, would have straightforward translations into these +syntax-parameterize
.Sorry about the delay, for some reason GitHub didn't notify me about this issue. I added the
if-let
,when-let
andcond-let
(with a shorthand forcond-let
where you need specify only one identifier). I didn't change the implementation ofaif
,awhen
andacond
, though, as it was rather short and simple anyway.They wouldn't be shorter and simpler in terms of the
-let
versions?@AlexKnauth The code you suggested is shorter by one line, and looks nearly the same (
(let ([tmp c]) (if …))
instead of(if-let (tmp c) …)
), so no big deal. Also, the extra level of indirection wouldn't improve readability. I did reuse part of your acond code to implement cond-let, though :) .Okay
Hi @AlexKnauth ! In order to match the current Racket relicensing, I'm changing the license for all my project to LGPL + MIT + Apache 2 + CC0 (to cover any potential future license change).
Since you contributed some code, is that okay for you concerning this project?
Thanks,
Georges Dupéron
Yes.
Thanks!