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

Alias problem #1

Closed
shilangyu opened this issue Oct 24, 2019 · 18 comments
Closed

Alias problem #1

shilangyu opened this issue Oct 24, 2019 · 18 comments

Comments

@shilangyu
Copy link

While I agree that the filter method is very confusing, a thing I would hate more is having aliases. Array.prototype.filter will most likely not be removed/deprecated when select will make its way into JavaScript. Which will mean we will have 2 1:1 methods. My 2 cents are that I support this proposal only if it will ensure that programmers wont have to choose between filter and select.

@edongashi
Copy link

In .NET's LINQ enumerable.Select(x => ...) means a projection (Array.map). People coming from C# would certainly be confused.

@jridgewell
Copy link
Member

Which will mean we will have 2 1:1 methods. My 2 cents are that I support this proposal only if it will ensure that programmers wont have to choose between filter and select.

I think this falls into a linter concern. Certainly seeing mixed use of .filter and .select isn't ideal, but but giving people the option to choose .select is worth it to both the writer and reader.

Note that we have other aliases already in the language:

  • Set.prototype.keys is an alias of Set.prototype.values
  • String.prototype.trimLeft is an alias of String.prototype.trimStart
  • String.prototype.trimRight is an alias of String.prototype.trimEnd

(That's not including the aliases from the @@iterator to some other method)

@ljharb
Copy link
Member

ljharb commented Oct 24, 2019

To be fair tho, in the first case, that’s because the protocol requires all three of keys/values/entries; in the second two, that’s because the right/left variants were impossible to remove, and ended up effectively deprecated, in annex b.

I don’t think any of those three serves as precedent for this proposal.

@hax
Copy link
Member

hax commented Oct 28, 2019

Maybe only add Array.p.filterOut ?

@jridgewell
Copy link
Member

that’s because the right/left variants were impossible to remove, and ended up effectively deprecated, in annex b.

Annex B doesn't mean deprecated.

Maybe only add Array.p.filterOut ?

That's another possibility, but it doesn't help with filter doing the opposite of what it should.

@hax
Copy link
Member

hax commented Oct 28, 2019

it doesn't help with filter doing the opposite of what it should

With both filter/filterOut in IDE's autocomplete list , I guess the programmers may reason out they will have opposite behavior... 😂

@jridgewell
Copy link
Member

in IDE's autocomplete list , I guess the programmers may reason out they will have opposite behavior... 😂

And when reading, when there's no autocomplete list? Or people who just use and editor and not and IDE (like me)?

@ljharb
Copy link
Member

ljharb commented Oct 28, 2019

Annex B means many potential things; absolutely one of them is “deprecated”.

@ckknight
Copy link

ckknight commented Nov 7, 2019

I love the idea of a reject method on Array.prototype. Or it could be called filterOut or any other name that makes sense and fits within our existing ecosystem.

The select name makes sense if one comes from a Ruby background, but does not if one comes from a LISP, .NET, Java, or SQL background.

One potential issue I see with reject is that Array.prototype.reject is very different from Promise.reject despite sharing the same name. It could lead to some confusion.

As an aside, if we add reject, it might be appropriate to add partition that could act similarly to https://lodash.com/docs/4.17.15#partition — this also might be out-of-scope.

@MaxGraey
Copy link

MaxGraey commented Nov 7, 2019

yeah, I also thought about partition. But it seems this out of scope: #2

@jridgewell
Copy link
Member

LISP, .NET, Java, or SQL

I know what SELECT does in SQL, but how about the other languages?

@MaxGraey
Copy link

MaxGraey commented Nov 7, 2019

For example in LINQ (C#) Select is analog of Array.p.map.

@jridgewell
Copy link
Member

Yah, the C# one was mentioned in #1 (comment).

But Java? I'm not aware of a similarly named method. And I know nothing about LISP.

@motss
Copy link

motss commented Nov 29, 2019

I really like this idea. So I've added it to one of my packages jsmodern for TypeScript users (deno users should never miss this).

@jdalton
Copy link
Member

jdalton commented Dec 5, 2019

Just popping in to register my dislike of an alias. I'm in favor of reject (or filterOut, or whatever the final name is) though 👍

@jridgewell
Copy link
Member

TC39 decided to reject (🥁) creating an alias, so we will not be getting a select. Closing this as resolved.

@shilangyu
Copy link
Author

So this whole proposal can be closed then? Unless reject is still being considered?

@jridgewell
Copy link
Member

jridgewell commented Dec 6, 2019

No, TC39 is considering "making filtering easier", which means looking at the inverse function (reject or whatever we name it) and others like partition. The proposal reached Stage 1 with this as the direction.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants