alloy-rs / rlp

Fast implementation of Ethereum RLP serialization
Apache License 2.0
77 stars 16 forks source link

perf: write into arrayvec directly #15

Closed DaniPopes closed 1 month ago

DaniPopes commented 1 month ago

<ArrayVec as From<[u8; N]>> does a memcpy, and ArrayVec::new doesn't zero-initialize the buffer.