See links in my OP.
There are other things in std
which allow us to reduce runtime overhead. To give a few examples:
Rc
(opposed toArc
)get_unchecked
(opposed toindex
)unchecked_add
(opposed to+
) (in nightly)
See links in my OP.
There are other things in std
which allow us to reduce runtime overhead. To give a few examples:
Rc
(opposed to Arc
)get_unchecked
(opposed to index
)unchecked_add
(opposed to +
) (in nightly)