core: add implements for FloatRef comparators

This commit is contained in:
hellerve 2020-05-12 22:45:29 +02:00
parent c569666a0a
commit 058ef11f9c

View File

@ -111,10 +111,13 @@ The margin of error is 0.00001.")
(defmodule FloatRef
(defn = [a b]
(Float.= @a @b))
(implements = FloatRef.=)
(defn < [a b]
(Float.< @a @b))
(implements < FloatRef.<)
(defn > [a b]
(Float.> @a @b))
(implements > FloatRef.>)
)