diff options
author | Eduardo Julian | 2019-07-24 21:18:30 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-07-24 21:18:30 -0400 |
commit | 68b37de7281d31470263d0e06bc72b1c5b6c2e32 (patch) | |
tree | 0b4d89fbc5fa8ab8a41190bba78425a26e5f21eb /stdlib/source/lux/abstract | |
parent | e87fba1b7204ee611dcb5528b8a8a3716588c976 (diff) |
Got rid of the "Number" abstraction.
Diffstat (limited to 'stdlib/source/lux/abstract')
-rw-r--r-- | stdlib/source/lux/abstract/number.lux | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/stdlib/source/lux/abstract/number.lux b/stdlib/source/lux/abstract/number.lux deleted file mode 100644 index b3a314ba5..000000000 --- a/stdlib/source/lux/abstract/number.lux +++ /dev/null @@ -1,14 +0,0 @@ -(.module: - lux) - -(`` (signature: #export (Number n) - {#.doc "Everything that should be expected of a number type."} - - (~~ (template [<name>] - [(: (-> n n n) <name>)] - [+] [-] [*] [/] [%])) - - (~~ (template [<name>] - [(: (-> n n) <name>)] - [negate] [signum] [abs])) - )) |