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

Any plans for a list/vector? #3

Open
jrbrodie77 opened this issue May 24, 2018 · 10 comments
Open

Any plans for a list/vector? #3

jrbrodie77 opened this issue May 24, 2018 · 10 comments
Labels
enhancement New feature or request

Comments

@jrbrodie77
Copy link

I like the trend of increasing functional programming data types for Python. Any plans for a list/vector?

@1st1
Copy link
Member

1st1 commented May 24, 2018

Not in the foreseeable future, unfortunately. PRs are welcome, though :)

@1st1 1st1 added the enhancement New feature or request label May 24, 2018
@antonagestam
Copy link
Contributor

How would an immutable list type differ from Python's tuple?

@1st1
Copy link
Member

1st1 commented Oct 4, 2019

The immutable list type will be quite similar to Python's tuple type. But, tuple + tuple is an O(n) operation, while extending an immutable list (or concatenating two immutable lists) will be a (O log32 N) operation.

@amirouche
Copy link

Not in the foreseeable future, unfortunately. PRs are welcome, though :)

I would like to work on this. I think about an implementation using fingertrees. Any advice?

@1st1
Copy link
Member

1st1 commented Jul 6, 2020

I would like to work on this.

Great!

I think about an implementation using fingertrees. Any advice?

Is that what say Clojure uses? The current HAMT implementation was hugely inspired by Clojure's map implementation, so it would be great to study how they handle vectors.

@amirouche
Copy link

HAMT is mostly the preferred way to implement mapping with Scheme.

I am not very familiar with Clojure. I found about that library https://github.com/clojure/data.finger-tree.

I investigated, and asked for advice around. finger trees have a good amortized complexity. The important word is "amortized", in other words it is a hit or miss in terms of performance if you randomly get something in the middle of the list. AFAIU, only the beginning and the end of the list can have predictable performance. Finger-trees were invented around Haskell that has great facility for delayed computation, it is optimized for that, since the default behavior is lazy. And AFAIK / AFAIU it is different with Python (it is possible, but not optimized). Finger trees are said to be a generic toolkit to create immutable data structures, is not false, but it requires at the very least benchmarks to be able to tell whether it is useful in practice.

I was said to go with a binary-tree with a log measure to implement an indexed immutable list. The problem with that approach is that it is very mathy stuff, or hackish. It sound to me like a hack similar to how to compute a hash in the implementation of an hash-table. The advantage is that it is easier to implement than finger trees. Also, the research debate is focused on the measure used tell whether the tree is balanced or not, ie. changing the measure (which happened twice over a couple of decades), is backward compatible and easy to do.

Also, the binary search tree approach allows to implement ordered mappings 💌.

I am not sure whether I will do it. I will post here if/when I have something useful.

@1st1
Copy link
Member

1st1 commented May 5, 2021

@amirouche sounds good. Although let me explicitly say that I wouldn't want to replace the current HAMT implementation for maps with something else. Using new algos to implement new types should be OK though.

@kkpattern
Copy link

kkpattern commented Apr 1, 2022

pyrsistent is a full-featured python immutable data structure library. It has a persistent vector type implemented in C. It's funny that pyrsistent lacks a C versioned map type(Its immutable map is implemented in python). Seems pyrsistent and immutables can complete each other.

@amirouche
Copy link

@amirouche
Copy link

For more information about ordered mappings look at https://okvs.dev

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

No branches or pull requests

5 participants