We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When linting this function with clj-kondo:
(defn smoothed-sample "Smoothed estimation function." [c-k h-k data deviates] (lazy-seq (cons (* c-k (+ (take 1 data) (* h-k (take 1 deviates)))) (if-let [n (next data)] (smoothed-sample c-k h-k n (next deviates))))))
I found the following type warnings:
src/criterium/stats.clj:335:16: error: Expected: number, received: seq. src/criterium/stats.clj:335:37: error: Expected: number, received: seq.
Maybe this function is just never used anywhere, but I thought I'd drop you a message about it.
The text was updated successfully, but these errors were encountered:
Indeed it has type errors and is unused.
Sorry, something went wrong.
No branches or pull requests
When linting this function with clj-kondo:
I found the following type warnings:
Maybe this function is just never used anywhere, but I thought I'd drop you a message about it.
The text was updated successfully, but these errors were encountered: