Does hy have cons, car and cdr equivalents? #2246
-
I really miss having cons, car and cdr, but I'm fairly new so are there any equivalents? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
They were removed from Hy a while back, but I created a package that mostly reproduces their semantics: https://github.com/pythological/python-cons. |
Beta Was this translation helpful? Give feedback.
-
To create a list, use |
Beta Was this translation helpful? Give feedback.
To create a list, use
[ … ]
. To get the first item (a lacar
), use(get x 0)
, or(first x)
from thetoolz
library. To get all but the first item (a lacdr
), use(slice x 1 None)
(cut x 1 None)
, or(rest x)
from Hyrule, or(drop 1 x)
fromtoolz
.