https://github.com/JuliaLang/julia
Raw File
Tip revision: 22bc0b0727217b3c942ad0256ee145e3efb4486c authored by Tim Besard on 13 March 2024, 13:59:38 UTC
Relax an assertion in jl_mt_assoc_by_type.
Tip revision: 22bc0b0
public.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

public
# Modules
    Checked,
    Filesystem,
    Order,
    Sort,

# Types
    AbstractLock,
    AsyncCondition,
    CodeUnits,
    Event,
    Fix1,
    Fix2,
    Generator,
    ImmutableDict,
    OneTo,
    LogRange,
    AnnotatedString,
    AnnotatedChar,
    UUID,

# Annotated strings
    annotatedstring,
    annotate!,
    annotations,

# Semaphores
    Semaphore,
    acquire,
    release,

# collections
    IteratorEltype,
    IteratorSize,
    to_index,
    vect,
    isdone,
    front,
    rest,
    split_rest,
    tail,
    checked_length,

# Loading
    DL_LOAD_PATH,
    load_path,
    active_project,

# Reflection and introspection
    isambiguous,
    isexpr,
    isidentifier,
    issingletontype,
    identify_package,
    locate_package,
    moduleroot,
    jit_total_bytes,
    summarysize,
    isexported,
    ispublic,
    remove_linenums!,

# Opperators
    operator_associativity,
    operator_precedence,
    isbinaryoperator,
    isoperator,
    isunaryoperator,

# C interface
    cconvert,
    unsafe_convert,

# Error handling
    exit_on_sigint,
    windowserror,

# Macros
    @assume_effects,
    @constprop,
    @locals,
    @propagate_inbounds,

# IO
    # types
    BufferStream,
    IOServer,
    OS_HANDLE,
    PipeEndpoint,
    TTY,
    # functions
    reseteof,
    link_pipe!,

# misc
    notnothing,
    runtests,
    text_colors
back to top