diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 5780435..c7548ce 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2165,7 +2165,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn compatibles? [rtype arg] (let [rtypes (hash-map 'i64 integer?), func (get rtypes rtype)] - (func arg) + (or (vector? arg) (func arg)) ) )