-
Notifications
You must be signed in to change notification settings - Fork 370
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
Remove car
and cdr
in favor of first
and rest
#1241
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It just feels weird to me that car
and cdr
were removed, yet there feels like a whole was left: now there's a head-tail
function in one place, the removed macros redefined somewhere else, and also a bunch of (get x 0)
s all over the place...
Not sure what a solution would be, but I still find this kinda weird...
docs/language/api.rst
Outdated
|
||
.. code-block:: clj | ||
|
||
=> (first (range 10)) | ||
0 | ||
|
||
It is implemented as ``(next (iter coll) None)``, so it works with any | ||
iterable, and if given an empty iterable, and it will return ``None`` instead |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Second and is redundant (though I feel like this might be easier to read if the section on empty literals was a separate sentence).
docs/language/api.rst
Outdated
``rest`` and ``cdr`` return the collection passed as an argument without the | ||
first element: | ||
``rest`` returns the collection passed as an argument without the | ||
first element, as an iterable: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about:
rest
takes the given collection and returns an iterable of all but the first element.
Most
Incidentally, I hate iterables. In practice, the laziness is of no benefit, I have to convert them to a list or tuple in order to do most any operation on them, and I get bitten by subtle bugs that arise because iterators drop each element once it's accessed. Python 3 was in the wrong to make |
I beefed up the documentation and tests for `first` and `rest` while I was at it. I defined `car` and `cdr` in native_tests.cons so the tests read a bit more naturally.
3f8a051
to
f21aa75
Compare
IMO iterables can be really useful (try filtering over a collection of ~2000 items and you'll see what I mean), but using them with collections can be annoying sometimes. In Python, it's less of an issue because those functions aren't even used too often, but in Hy, which has more of a functional leaning, it gets more annoying. I kind of wish sometimes that Hy had a set of functions (e.g. |
I tend to use macros (e.g.) that are both anaphoric and always return lists. You haven't approved this; what else needs to be done? |
The solution might be the seq abstraction from Clojure hylang/hyrule#32. |
Sorry, forgot about this. I guess the whole list vs iterator thing is more suited for another issue. |
I am a newbie just been playing around with Hy |
@Davoodeh They were confusingly similar-but-not-identical-to |
Closes #909.