Given a collection of &BitVecValue (say, &[BitVecValue]), I'd appreciate a function to build their concatenation that performs a single allocation of the whole required width (bonus points if it has a way of specifying which order to concatenate them, as I need both).
Given a collection of
&BitVecValue(say,&[BitVecValue]), I'd appreciate a function to build their concatenation that performs a single allocation of the whole required width (bonus points if it has a way of specifying which order to concatenate them, as I need both).