We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
peek(s::TranscodingStream, ::Type{Char})
Here is a MWE:
julia> using TranscodingStreams julia> s=NoopStream(IOBuffer("🐨")) NoopStream{IOBuffer}(<mode=idle>) julia> peek(s, Char) ERROR: ArgumentError: NoopStream{IOBuffer} not marked Stacktrace: [1] reset(stream::NoopStream{IOBuffer}) @ TranscodingStreams ~/.julia/packages/TranscodingStreams/F7ot4/src/stream.jl:253 [2] peek(s::NoopStream{IOBuffer}, ::Type{Char}) @ Base ./io.jl:331 [3] top-level scope @ REPL[13]:1 julia> versioninfo() Julia Version 1.10.4 Commit 48d4fd48430 (2024-06-04 10:41 UTC) Build Info: Official https://julialang.org/ release Platform Info: OS: Linux (x86_64-linux-gnu) CPU: 16 × AMD Ryzen 7 7800X3D 8-Core Processor WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-15.0.7 (ORCJIT, znver3) Threads: 1 default, 0 interactive, 1 GC (on 16 virtual cores)
The issue is that this package is missing an implementation for Base.peek(s::TranscodingStream, ::Type{UInt8})::UInt8
Base.peek(s::TranscodingStream, ::Type{UInt8})::UInt8
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Here is a MWE:
The issue is that this package is missing an implementation for
Base.peek(s::TranscodingStream, ::Type{UInt8})::UInt8
The text was updated successfully, but these errors were encountered: