File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ A .NET 9.0 Base58 encoding and decoding library with support for multiple alphab
55## Features
66
77- ** Multiple Alphabets** : Built-in support for Bitcoin(IFPS/Sui), Ripple, and Flickr alphabets
8- - ** Memory Efficient** : Uses span operations to minimize allocations
9- - ** Type Safe** : Leverages ReadOnlySpan and ReadOnlyMemory for safe operations
8+ - ** Memory Efficient** : Uses stackalloc operations when possible to minimize allocations
9+ - ** Type Safe** : Leverages ReadOnlySpan and ReadOnlyMemory for safe memory operations
1010- ** Intrinsics** : Uses SIMD ` Vector128/Vector256 ` and unrolled loop for counting leading zeros
1111
1212## Usage
Original file line number Diff line number Diff line change 11using System . Diagnostics . CodeAnalysis ;
22
33namespace Base58Encoding ;
4- public static class ThrowHelper
4+ internal static class ThrowHelper
55{
66 [ DoesNotReturn ]
77 public static void ThrowNotExactLength ( )
You can’t perform that action at this time.
0 commit comments