core: add missing longref implements procs

This commit is contained in:
hellerve 2020-05-18 23:02:26 +02:00
parent 322fe028db
commit 5f408229a1

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.>)
)