Skip to content

Commit 9266a09

Browse files
committed
fix eq?, add non-standard wya/eq?
1 parent 27ba6d6 commit 9266a09

File tree

1 file changed

+23
-13
lines changed

1 file changed

+23
-13
lines changed

app/Primitives.hs

+23-13
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ primitives = map (Data.Bifunctor.second SPrimativeProc)
6969
, ("cdr", cdr)
7070
, ("cons", cons)
7171

72-
, ("eqv?", eqv)
72+
, ("wya/eq?", wyaEq)
7373
, ("eq?", eq)
74+
, ("eqv?", eqv)
7475
, ("equal?", equal)
7576

7677
, ("num-args-error", numArgsError)
@@ -329,19 +330,20 @@ cons args = throwError $ NumArgs 2 args
329330
-- equality
330331
-----------------------------------------
331332

332-
-- ... a most unpermissive eq?
333-
-- TODO: oops, this isn't spec-compliant...
334-
_eq :: SchemeVal -> SchemeVal -> Bool
335-
_eq a b = case (a, b) of
333+
-- a most discerning eq?... non-standard
334+
-- if `wya/id` existed, would be same as
335+
-- (define (wya/eq? a b) (= (wya/id a) (wya/id b)))
336+
_wyaEq :: SchemeVal -> SchemeVal -> Bool
337+
_wyaEq a b = case (a, b) of
336338
(SchemeVal (Just tagA) _, SchemeVal (Just tagB) _) -> tagA == tagB
337339
_ -> False
338340

339-
eq :: [SchemeVal] -> SchemeValOrError
340-
eq [a, b] = return $ SBool $ _eq a b
341-
eq args = throwError $ NumArgs 2 args
341+
wyaEq :: [SchemeVal] -> SchemeValOrError
342+
wyaEq [a, b] = return $ SBool $ _wyaEq a b
343+
wyaEq args = throwError $ NumArgs 2 args
342344

343-
_eqv :: SchemeVal -> SchemeVal -> Bool
344-
_eqv a b = case (a, b) of
345+
_eq :: SchemeVal -> SchemeVal -> Bool
346+
_eq a b = case (a, b) of
345347
(SChar a', SChar b') -> a' == b'
346348
(SString a', SString b') -> a' == b'
347349
(SSymbol a', SSymbol b') -> a' == b'
@@ -354,12 +356,20 @@ _eqv a b = case (a, b) of
354356
(SComplex a'', SComplex b'') -> a'' == b''
355357
(_, _) -> False
356358
(SList [], SList []) -> True
357-
(a', b') -> _eq a' b'
359+
(a', b') -> _wyaEq a' b'
360+
361+
eq :: [SchemeVal] -> SchemeValOrError
362+
eq [a, b] = return $ SBool $ _eq a b
363+
eq args = throwError $ NumArgs 2 args
364+
358365

366+
-- the spec permits (define eqv? eqv?)
367+
_eqv :: SchemeVal -> SchemeVal -> Bool
368+
_eqv = _eq
359369

360370
eqv :: [SchemeVal] -> SchemeValOrError
361-
eqv [a, b] = return $ SBool $ _eqv a b
362-
eqv args = throwError $ NumArgs 2 args
371+
eqv = eq
372+
363373

364374
_equal :: SchemeVal -> SchemeVal -> Bool
365375
_equal a b = case (a, b) of

0 commit comments

Comments
 (0)