(global)
(global k)
(global k {:keys [cached]})
returns the entire global map
(global :all)
returns the entire global map (global :all)
(global-all-raw)
returns the global object for all global types
(:group (global-all-raw)) => "hara"
returns the global object for all global types (:group (global-all-raw)) => "hara"
(global-env-raw)
returns the global object for system env
(:user (global-env-raw)) => string?
returns the global object for system env (:user (global-env-raw)) => string?
(global-home-raw)
returns the global object for all global types
(global-home-raw) => anything
returns the global object for all global types (global-home-raw) => anything
(global-project-raw)
returns the global object for thecurrent project
(:group (global-project-raw)) => "hara"
returns the global object for thecurrent project (:group (global-project-raw)) => "hara"
(global-properties-raw)
returns the global object for system properties
(:java (global-properties-raw)) ;; {:compile {:path "./target/classes"}, :debug "false"} => map?
returns the global object for system properties (:java (global-properties-raw)) ;; {:compile {:path "./target/classes"}, :debug "false"} => map?
(global-raw m key-fn)
constructs a global object
(global-raw {[:a] 1 [:b] 2} identity) => global?
constructs a global object (global-raw {[:a] 1 [:b] 2} identity) => global?
(global? x)
checks if object is of type global
(global? (map->Global {})) => true
checks if object is of type global (global? (map->Global {})) => true
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close