From: Barton W. <wi...@un...> - 2022-07-31 21:32:22
|
Would these functions be worthy additions to /src? (defmfun $timesp (x) (and (not ($mapatom x)) (equal ($part x 0) "*"))) (defmfun $plusp (x) (and (not ($mapatom x)) (equal ($part x 0) "+"))) (defmfun $exptp (x) (and (not ($mapatom x)) (equal ($part x 0) "^"))) Or should they be defined differently? I think we’ve talked about this before. Instead of ($part x 0), we could call mpart. --Barton |