jihoonson / iron-arrow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can we use Rc instead of Box in Array?

andygrove opened this issue · comments

Rc is similar to Box but can be cloned (just the pointer is cloned, not the data) allowing for easier sharing of arrays.

Of course. There is no reason for using Box. Please go for it.

Here's the PR: #7