Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Build system changes
New library functions
---------------------
* `copyuntil(out, io, delim)` and `copyline(out, io)` copy data into an `out::IO` stream ([#48273]).
* `delete(nt::NamedTuple, key::Symbol)` returns `nt` without the entry named by `key`.
- `delete(nt::NamedTuple, keys::Tuple{Vararg{Symbol}})` returns `nt` without the entris named by `keys`.

New library features
--------------------
Expand Down
87 changes: 43 additions & 44 deletions base/exports.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

export
# Modules
# Modules
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do not change formatting unecessarily

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was unintentional -- thank you for catching the mistype

Meta,
StackTraces,
Sys,
Expand All @@ -12,7 +12,7 @@ export
Broadcast,
MathConstants,

# Types
# Types
AbstractChannel,
AbstractIrrational,
AbstractMatrix,
Expand Down Expand Up @@ -103,7 +103,7 @@ export
VersionNumber,
WeakKeyDict,

# Ccall types
# Ccall types
Cchar,
Cdouble,
Cfloat,
Expand All @@ -125,7 +125,7 @@ export
Cstring,
Cwstring,

# Exceptions
# Exceptions
CanonicalIndexError,
CapturedException,
CompositeException,
Expand All @@ -139,7 +139,7 @@ export
SystemError,
StringIndexError,

# Global constants and variables
# Global constants and variables
ARGS,
C_NULL,
DEPOT_PATH,
Expand All @@ -153,7 +153,7 @@ export
VERSION,
devnull,

# Mathematical constants
# Mathematical constants
Inf,
Inf16,
Inf32,
Expand All @@ -166,7 +166,7 @@ export
π, pi,
ℯ,

# Operators
# Operators
!,
!=,
≠,
Expand Down Expand Up @@ -204,11 +204,11 @@ export
|,
|>,
~,
:,
: ,
=>,
∘,

# scalar math
# scalar math
@evalpoly,
evalpoly,
abs,
Expand Down Expand Up @@ -369,7 +369,7 @@ export
≈,
≉,

# arrays
# arrays
axes,
broadcast!,
broadcast,
Expand Down Expand Up @@ -460,7 +460,7 @@ export
view,
zeros,

# search, find, match and related functions
# search, find, match and related functions
contains,
eachmatch,
endswith,
Expand All @@ -481,18 +481,18 @@ export
insorted,
startswith,

# linear algebra
# linear algebra
var"'", # to enable syntax a' for adjoint
adjoint,
transpose,
kron,
kron!,

# bitarrays
# bitarrays
falses,
trues,

# dequeues
# dequeues
append!,
insert!,
pop!,
Expand All @@ -503,7 +503,7 @@ export
popfirst!,
pushfirst!,

# collections
# collections
all!,
all,
allequal,
Expand All @@ -514,6 +514,7 @@ export
collect,
count!,
count,
delete,
delete!,
deleteat!,
keepat!,
Expand Down Expand Up @@ -579,7 +580,7 @@ export
∩,
∪,

# strings
# strings
ascii,
bitstring,
bytes2hex,
Expand Down Expand Up @@ -636,7 +637,7 @@ export
uppercase,
uppercasefirst,

# text output
# text output
IOContext,
displaysize,
dump,
Expand All @@ -648,27 +649,27 @@ export
sprint,
summary,

# logging
# logging
@debug,
@info,
@warn,
@error,

# bigfloat & precision
# bigfloat & precision
precision,
rounding,
setprecision,
setrounding,
get_zero_subnormals,
set_zero_subnormals,

# iteration
# iteration
iterate,
enumerate, # re-exported from Iterators
zip,
only,

# object identity and equality
# object identity and equality
copy,
deepcopy,
hash,
Expand All @@ -683,7 +684,7 @@ export
objectid,
sizeof,

# tasks and conditions
# tasks and conditions
Condition,
current_task,
islocked,
Expand All @@ -706,14 +707,14 @@ export
asyncmap!,
errormonitor,

# channels
# channels
take!,
put!,
isready,
fetch,
bind,

# missing values
# missing values
coalesce,
@coalesce,
ismissing,
Expand All @@ -724,12 +725,12 @@ export
isnothing,
nonmissingtype,

# time
# time
sleep,
time,
time_ns,

# errors
# errors
backtrace,
catch_backtrace,
current_exceptions,
Expand All @@ -738,10 +739,10 @@ export
retry,
systemerror,

# stack traces
# stack traces
stacktrace,

# types
# types
convert,
getproperty,
setproperty!,
Expand Down Expand Up @@ -772,7 +773,7 @@ export
typejoin,
widen,

# syntax
# syntax
esc,
gensym,
@kwdef,
Expand All @@ -781,7 +782,7 @@ export
@macroexpand,
parse,

# help and reflection
# help and reflection
code_typed,
code_lowered,
fullname,
Expand All @@ -802,26 +803,26 @@ export
invokelatest,
@invokelatest,

# loading source files
# loading source files
__precompile__,
evalfile,
include_string,
include_dependency,

# RTS internals
# RTS internals
GC,
finalizer,
finalize,
precompile,

# misc
# misc
atexit,
atreplinit,
exit,
ntuple,
splat,

# I/O and events
# I/O and events
close,
closewrite,
countlines,
Expand Down Expand Up @@ -876,7 +877,7 @@ export
unsafe_write,
write,

# multimedia I/O
# multimedia I/O
AbstractDisplay,
display,
displayable,
Expand All @@ -891,7 +892,7 @@ export
HTML,
Text,

# paths and file names
# paths and file names
abspath,
basename,
dirname,
Expand All @@ -909,7 +910,7 @@ export
splitext,
splitpath,

# filesystem operations
# filesystem operations
cd,
chmod,
chown,
Expand Down Expand Up @@ -955,7 +956,7 @@ export
uperm,
walkdir,

# external processes
# external processes
detach,
getpid,
ignorestatus,
Expand All @@ -969,7 +970,7 @@ export
success,
withenv,

# C interface
# C interface
@cfunction,
@ccall,
cglobal,
Expand All @@ -987,11 +988,11 @@ export
unsafe_store!,
unsafe_swap!,

# implemented in Random module
# implemented in Random module
rand,
randn,

# Macros
# Macros
# parser internal
@__FILE__,
@__DIR__,
Expand Down Expand Up @@ -1050,9 +1051,7 @@ export
@noinline,
@nospecialize,
@specialize,
@polly,

@assert,
@polly, @assert,
@atomic,
@atomicswap,
@atomicreplace,
Expand Down
Loading