We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 625ab2f commit 942728aCopy full SHA for 942728a
src/longsequences/constructors.jl
@@ -27,7 +27,7 @@ function LongSequence{A}(it) where {A <: Alphabet}
27
data = Vector{UInt64}(undef, seq_data_len(A, len))
28
bits = zero(UInt)
29
bitind = bitindex(BitsPerSymbol(A()), encoded_data_eltype(LongSequence{A}), 1)
30
- @inbounds for (i, x) in enumerate(it)
+ @inbounds for x in it
31
xT = convert(eltype(A), x)
32
enc = encode(A(), xT)
33
bits |= enc << offset(bitind)
0 commit comments