std.config.global
global
added in 3.0
(global)(global k)(global k {:keys [cached]})returns the entire global map
(global :all)
global-all-raw
added in 3.0
(global-all-raw)returns the global object for all global types
(:group (global-all-raw)) => “xyz.zcaudate”
global-env-raw
added in 3.0
(global-env-raw)returns the global object for system env
(:home (global-env-raw)) => string?
global-home-raw
added in 3.0
(global-home-raw)returns the global object for all global types
(global-home-raw) => anything
global-project-raw
added in 3.0
(global-project-raw)returns the global object for thecurrent project
(:group (global-project-raw)) => “xyz.zcaudate”
global-properties-raw
added in 3.0
(global-properties-raw)returns the global object for system properties
(:java (global-properties-raw)) ;; {:compile {:path “./target/classes”}, :debug “false”} => map?
global-raw
added in 3.0
(global-raw m key-fn)global-session-raw
added in 3.0
(global-session-raw)returns the global object within the current session
(global-session-raw) => {}
global?
added in 3.0
(global? x)checks if object is of type global
(global? (map->Global {})) => true