Liking cljdoc? Tell your friends :D

methodical.impl.combo.common

Utility functions for implementing method combinations.

Utility functions for implementing method combinations.
raw docstring

add-implicit-argclj

(add-implicit-arg arg fn-tail)

Add an implicit arg to the beginning of the arglists for every arity of fn-tail.

Add an implicit `arg` to the beginning of the arglists for every arity of `fn-tail`.
sourceraw docstring

add-implicit-next-method-argsclj

(add-implicit-next-method-args qualifier fn-tail)

Add an implicit next-method arg to the beginning of primary and :around fn tails; :before and :after tails are left as-is.

Add an implicit `next-method` arg to the beginning of primary and `:around` fn tails; `:before` and `:after` tails
are left as-is.
sourceraw docstring

apply-around-methodsclj

(apply-around-methods combined-method around-methods)

Combine around-methods into combined-method, returning a new even-more-combined method. Each around method is partially bound with a next-method arg. Normally, this applies around methods least-specific-first (e.g. Person before Child).

Combine `around-methods` into `combined-method`, returning a new even-more-combined method. Each around method is
partially bound with a `next-method` arg. Normally, this applies around methods least-specific-first (e.g. Person
before Child).
sourceraw docstring

combine-primary-methodsclj

(combine-primary-methods primary-methods)

Combine all primary-methods into a single combined method. Each method is partially bound with a next-method arg.

Combine all `primary-methods` into a single combined method. Each method is partially bound with a `next-method`
arg.
sourceraw docstring

transform-fn-tailclj

(transform-fn-tail f fn-tail)

Transform fn-tail using f, a function that operates on a single ([params*] expr*) form. For single-arity functions, this applies f directly to fn-tail; for functions overloaded with multiple arities, this maps f across all arities.

Transform `fn-tail` using f, a function that operates on a single `([params*] expr*)` form. For single-arity
functions, this applies `f` directly to `fn-tail`; for functions overloaded with multiple arities, this maps `f`
across all arities.
sourceraw docstring

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

× close