oleg-st / ZstdSharp

Port of zstd compression library to c#
MIT License
217 stars 29 forks source link

support ReadonlySpan<byte> argument for LoadDictionary method #11

Closed SiamAbdullah closed 2 years ago

SiamAbdullah commented 2 years ago

I would like you have support to load dictionary from ReadOnlySpan. This will help to load dictionary from preloaded memory stream without allocation a new byte array and coping from the existing memory.

oleg-st commented 2 years ago

Thank you @SiamAbdullah