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

Remove car and cdr in favor of first and rest #1241

Merged
merged 3 commits into from
Mar 6, 2017

Conversation

Kodiologist
Copy link
Member

Closes #909.

Copy link
Contributor

@refi64 refi64 left a 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...


.. 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
Copy link
Contributor

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).

``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:

Copy link
Contributor

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.

@Kodiologist
Copy link
Member Author

Most (get x 0)s could probably be replaced with first. I opted for a more literal translation so I didn't have to check that first doesn't prematurely eat up an iterator or something. Do you want me to use first where I can?

head-tail is an orthogonal bit of refactoring to the removal of car and cdr, but it was an obvious opportunity for refactoring, which I took when I noticed.

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 map, range, etc. produce iterables. I'm of half a mind to make Hy's iterable-producing functions (map, rest, etc.) automagically produce a collection instead when they're given a collection.

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.
@Kodiologist Kodiologist force-pushed the cdr-i-barely-know-her branch from 3f8a051 to f21aa75 Compare February 27, 2017 17:12
@refi64
Copy link
Contributor

refi64 commented Feb 27, 2017

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. map-c or something) that specifically return collections instead...

@Kodiologist
Copy link
Member Author

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?

@gilch
Copy link
Member

gilch commented Feb 27, 2017

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.

The solution might be the seq abstraction from Clojure hylang/hyrule#32.

@refi64 refi64 merged commit 8b6a45e into hylang:master Mar 6, 2017
@refi64
Copy link
Contributor

refi64 commented Mar 6, 2017

Sorry, forgot about this. I guess the whole list vs iterator thing is more suited for another issue.

@Kodiologist Kodiologist deleted the cdr-i-barely-know-her branch March 16, 2017 17:53
@Davoodeh
Copy link

Davoodeh commented Dec 22, 2020

I am a newbie just been playing around with Hy
Just saw this... It just feels off... Why would anybody want to possibly remove car / cdr from a Lisp?
I tried to can't there be an alias of some sort built-in Hy for this at least?
Not a fit to say here but : to cut would be another awesome alias

@Kodiologist
Copy link
Member Author

@Davoodeh They were confusingly similar-but-not-identical-to first and rest; you couldn't use them in higher-order functions because they were macros rather than functions; and the names make no sense in Hy because there are no cons cells. If you really want them back, you can copy and paste the definitions into your own code.

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

Successfully merging this pull request may close these issues.

Remove car/cdr in favor of first/rest
5 participants