Merge pull request #816 from hellerve/veit/add-implements-to-longref

Add missing longref implements annotations
This commit is contained in:
Erik Svedäng 2020-05-19 06:11:14 +02:00 committed by GitHub
commit 74c5542abb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,10 +62,13 @@ to non-refs.")
(defmodule LongRef
(defn = [a b]
(Long.= @a @b))
(implements = LongRef.=)
(defn < [a b]
(Long.< @a @b))
(implements < LongRef.<)
(defn > [a b]
(Long.> @a @b))
(implements > LongRef.>)
)