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
(t/concur #:tick{:beginning #time/instant"2000-01-01T01:00:01.011Z", :end #time/instant"2000-01-01T02:00:01.011Z"} #:tick{:beginning #time/instant"2000-01-01T00:00:00.003Z", :end #time/instant"2000-01-01T01:00:00.003Z"} #:tick{:beginning #time/instant"2000-01-01T01:00:01.179Z", :end #time/instant"2000-01-01T02:00:01.179Z"})
Fails with:
No implementation of method: :< of protocol: #'tick.core/ITimeComparison found for class: nil
Because: tick.interval/relation cannot handle nil, which it will get in the example above.
tick.interval/relation
nil
I worked around it by doing:
(defn safe-concur ([] nil) ([x] x) ([x & args] (reduce (fn safe-concur-check [x y] (and (and x y) (tick.interval/concur x y))) x args)))
The text was updated successfully, but these errors were encountered:
t/concur
malcolmsparks
No branches or pull requests
Fails with:
No implementation of method: :< of protocol: #'tick.core/ITimeComparison found for class: nil
Because:
tick.interval/relation
cannot handlenil
, which it will get in the example above.I worked around it by doing:
The text was updated successfully, but these errors were encountered: