/ Collections / src / Collections.jl
Collections.jl
 1  @doc """ =Collections= module
 2  """
 3  module Collections
 4  
 5  if get(ENV, "JULIA_NOPRECOMP", "") == "all"
 6      __init__() = begin
 7          include(joinpath(@__DIR__, "module.jl"))
 8      end
 9  else
10      occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false)
11      include("module.jl")
12  end
13  
14  end