mnemonikr / symbolic-pcode

Apache License 2.0
0 stars 0 forks source link

SymbolicBitVec should use a VecDeque internally #57

Closed mnemonikr closed 4 weeks ago

mnemonikr commented 1 year ago

Some operations need to manipulate the front of the internal vector, which is not conducive with a Vec.

The limiting factor currently is we have implemented Deref for SymbolicBitVec into a slice, which a VecDeque cannot do. As a part of this issue we should remove that and replace it with implementations of the Index and other relevant slice traits instead.