ShortStrings.jl icon indicating copy to clipboard operation
ShortStrings.jl copied to clipboard

A fast implementation of short strings of fixed size. Great for sorting and group-by operations

Results 7 ShortStrings.jl issues
Sort by recently updated
recently updated
newest added

I have a `StaticArrays.MVector` and I want to make `ShortString`. Should this be possible? ```jl julia> using StaticArrays, ShortStrings; ShortString(@MVector UInt8[1,2,3,4]) Error showing value of type ShortString{MVector{4, UInt8}}: ERROR: DimensionMismatch("No...

I don't care to duplicate efforts. InlineStrings is just a more complete implementation of this idea. With a few extra clever tricks. cc @quinnj

Currently `ShortString(ss127"hello",5)` errors, and this fixes that

These macros don't do any interpolation. I could add interpolation (just as I did so for the `f"..."`, `F"..."`, `pr"...."`, and `PR"..."` macros in the StrLiterals.jl package. What do people...

cf #29 Rather than sorting the size at all we could store the string in null-padded form. This would let us use up to the full width of the backing...

Add isdefined check for Base.memhash_seed to support Julia 1.13+ where Base.memhash_seed was removed. When memhash_seed is not available, use MurmurHash3 directly without the seed offset. Related to JuliaLang/julia#59697 🤖 Generated...