module documentation

Julia builtins.

Unknown Field: copyright
Copyright 2006-2021 by the Pygments team, see AUTHORS.
Unknown Field: license
BSD, see LICENSE for details.
Constant BUILTIN​_LIST #!/usr/bin/env julia
Constant DOTTED​_OPERATORS​_LIST #!/usr/bin/env julia
Constant KEYWORD​_LIST #!/usr/bin/env julia
Constant LITERAL​_LIST Undocumented
Constant OPERATORS​_LIST Undocumented
BUILTIN_LIST: tuple[str, ...] =

#!/usr/bin/env julia

import REPL.REPLCompletions res = String["true", "false"] for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),

REPLCompletions.completions("", 0)[1])
try

v = eval(Symbol(compl.mod)) if !(v isa Function || v isa Type || v isa TypeVar || v isa Module || v isa Colon)

push!(res, compl.mod)

end

catch e end

end sort!(unique!(res)) foreach(x -> println("'", x, "',"), res)

Value
('AbstractArray',
 'AbstractChannel',
 'AbstractChar',
 'AbstractDict',
 'AbstractDisplay',
 'AbstractFloat',
 'AbstractIrrational',
...
DOTTED_OPERATORS_LIST: list[str] =

#!/usr/bin/env julia

import REPL.REPLCompletions res = String["in", "isa", "where"] for kw in collect(x.keyword for x in REPLCompletions.complete_keyword(""))

if !(contains(kw, " ") || kw == "struct")
push!(res, kw)

end

end sort!(unique!(setdiff!(res, ["true", "false"]))) foreach(x -> println("'", x, "',"), res)

Value
['=',
 '+=',
 '-=',
 '*=',
 '/=',
 '//=',
 '\\=',
...
KEYWORD_LIST: tuple[str, ...] =

#!/usr/bin/env julia

import REPL.REPLCompletions res = String[] for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),

REPLCompletions.completions("", 0)[1])
try

v = eval(Symbol(compl.mod)) if (v isa Type || v isa TypeVar) && (compl.mod != "=>")

push!(res, compl.mod)

end

catch e end

end sort!(unique!(res)) foreach(x -> println("'", x, "',"), res)

Value
('baremodule',
 'begin',
 'break',
 'catch',
 'ccall',
 'const',
 'continue',
...
LITERAL_LIST: tuple[str, ...] =

Undocumented

Value
('ARGS',
 'C_NULL',
 'DEPOT_PATH',
 'ENDIAN_BOM',
 'ENV',
 'Inf',
 'Inf16',
...
OPERATORS_LIST: list[str] =

Undocumented

Value
['->', ':=', '$=', '?', '||', '&&', ':', '$', '::']