Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WISH: data set function could use /case to differentiate between word types #2399

Open
Siskin-Bot opened this issue Feb 15, 2020 · 0 comments
Labels
Red compatibility Issues and changes required for compatibility with Red language Type.wish

Comments

@Siskin-Bot
Copy link
Collaborator

Submitted by: Oldes

Carl was thinking about it years ago: http://www.rebol.net/r3decide/0003.html
In Red it is already implemented:

>> union [a b] ['a 'b]
== [a b]
>> union/case [a b] ['a 'b]
== [a b 'a 'b]
>> difference ['a 'b] [a b]
== []
>> difference/case ['a 'b] [a b]
== ['a 'b a b]

Imported from: metaeducation#2398

@Oldes Oldes added the Red compatibility Issues and changes required for compatibility with Red language label Feb 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Red compatibility Issues and changes required for compatibility with Red language Type.wish
Projects
None yet
Development

No branches or pull requests

2 participants