https://github.com/JuliaLang/julia
Revision 912460bb7418ac68139dde9fdd854314bd32c6cd authored by Jeff Fessler on 15 March 2024, 04:46:03 UTC, committed by GitHub on 15 March 2024, 04:46:03 UTC
I'm pretty sure the manual advises against `x -> x >= 0` :)
1 parent 67cdb9b
Raw File
Tip revision: 912460bb7418ac68139dde9fdd854314bd32c6cd authored by Jeff Fessler on 15 March 2024, 04:46:03 UTC
Use Julian way `≥(0)` in `findall` docs (#53740)
Tip revision: 912460b
coreio.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

print(xs...)   = print(stdout, xs...)
println(xs...) = println(stdout, xs...)
println(io::IO) = print(io, '\n')

function show end
function repr end

struct DevNull <: IO end
const devnull = DevNull()
write(::DevNull, ::UInt8) = 1
unsafe_write(::DevNull, ::Ptr{UInt8}, n::UInt)::Int = n
closewrite(::DevNull) = nothing
close(::DevNull) = nothing
wait_close(::DevNull) = wait()
bytesavailable(io::DevNull) = 0

let CoreIO = Union{Core.CoreSTDOUT, Core.CoreSTDERR}
    global write(io::CoreIO, x::UInt8) = Core.write(io, x)
    global unsafe_write(io::CoreIO, x::Ptr{UInt8}, nb::UInt) = Core.unsafe_write(io, x, nb)

    CoreIO = Union{CoreIO, DevNull}
    global read(::CoreIO, ::Type{UInt8}) = throw(EOFError())
    global isopen(::CoreIO) = true
    global isreadable(::CoreIO) = false
    global iswritable(::CoreIO) = true
    global flush(::CoreIO) = nothing
    global eof(::CoreIO) = true
    global wait_readnb(::CoreIO, nb::Int) = nothing
end

stdin::IO = devnull
stdout::IO = Core.stdout
stderr::IO = Core.stderr
back to top