Implemented fixnum =.
authorTim Vaughan <tgvaughan@gmail.com>
Thu, 21 Jul 2016 09:46:25 +0000 (21:46 +1200)
committerTim Vaughan <tgvaughan@gmail.com>
Thu, 21 Jul 2016 09:46:25 +0000 (21:46 +1200)
scheme-primitives.4th

index 87cbdd4..03d885b 100644 (file)
     mod fixnum-type
 ; make-primitive remainder
 
+:noname ( args -- bool )
+
+    2dup nil objeq? if
+        true boolean-type exit
+    then
+
+    ( args )
+
+    2dup car fixnum-type ensure-arg-type ( args arg0 )
+    2swap cdr ( arg0 args' )
+
+    2dup nil objeq? if
+        2drop 2drop
+        true boolean-type exit
+    then
+
+    ( arg0 args' )
+
+    begin
+        2dup nil objeq? false =
+    while
+        2dup car fixnum-type ensure-arg-type ( arg0 args' arg1 )
+        2rot 2dup 2rot ( args' arg0 arg0 arg1 )
+        objeq? false = if
+            2drop 2drop
+            false boolean-type exit
+        then
+
+        2swap cdr ( arg0 args'' )
+    repeat
+
+    2drop 2drop
+    true boolean-type
+; make-primitive =
+
 ( = Pairs and Lists = )
 
 :noname ( args -- pair )
     cons
 ; make-primitive cons
 
+:noname ( args -- list )
+    \ args is already a list!
+; make-primitive list
+
 :noname ( args -- pair )
     2dup 1 ensure-arg-count
     car pair-type ensure-arg-type
 
     ok-symbol
 ; make-primitive set-cdr!
+
+( = Polymorphic equality testing = )
+
+:noname ( args -- bool )
+    2dup 2 ensure-arg-count
+    2dup cdr car
+    2swap car
+
+    objeq? boolean-type
+; make-primitive eq?