aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/abstract
diff options
context:
space:
mode:
authorEduardo Julian2019-07-24 21:18:30 -0400
committerEduardo Julian2019-07-24 21:18:30 -0400
commit68b37de7281d31470263d0e06bc72b1c5b6c2e32 (patch)
tree0b4d89fbc5fa8ab8a41190bba78425a26e5f21eb /stdlib/source/lux/abstract
parente87fba1b7204ee611dcb5528b8a8a3716588c976 (diff)
Got rid of the "Number" abstraction.
Diffstat (limited to 'stdlib/source/lux/abstract')
-rw-r--r--stdlib/source/lux/abstract/number.lux14
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]))
- ))