Liking cljdoc? Tell your friends :D

clj-holmes.rules.utils


function-usage-possibilitiesclj

(function-usage-possibilities ns-declaration ns-to-find function)

Given the following input

  • function: read-string
  • namespace: clojure.edn
  • ns-declaration: (ns banana (:require [clojure.edn :as edn]) The result will be a set #{read-string, clojure.edn/read-string, edn/read-string} which contains all possibilities to find the clojure.edn/read-string function in the namespace banana
Given the following input
- function: read-string
- namespace: clojure.edn
- ns-declaration: (ns banana (:require [clojure.edn :as edn])
The result will be a set #{read-string, clojure.edn/read-string, edn/read-string} which contains all possibilities to
find the clojure.edn/read-string function in the namespace banana
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close