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

Missing documentation for ?

Open ShalokShalom opened this issue 2 years ago • 0 comments

If I hover over the ? operator, I get no info box on it.

Out of the REPL help:

a ? b : c

Short form for conditionals; read "if a, evaluate b otherwise evaluate c". Also known as the ternary operator
(https://en.wikipedia.org/wiki/%3F:).

This syntax is equivalent to if a; b else c end, but is often used to emphasize the value b-or-c which is being used as part of a
larger expression, rather than the side effects that evaluating b or c may have.

See the manual section on control flow for more details.

Examples
≡≡≡≡≡≡≡≡≡≡

julia> x = 1; y = 2;

julia> x > y ? println("x is larger") : println("y is larger")
y is larger

Can we include this?

ShalokShalom avatar Sep 01 '23 10:09 ShalokShalom