aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/db
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/world/db')
-rw-r--r--stdlib/source/library/lux/world/db/jdbc.lux28
-rw-r--r--stdlib/source/library/lux/world/db/jdbc/input.lux16
-rw-r--r--stdlib/source/library/lux/world/db/jdbc/output.lux18
-rw-r--r--stdlib/source/library/lux/world/db/sql.lux6
4 files changed, 34 insertions, 34 deletions
diff --git a/stdlib/source/library/lux/world/db/jdbc.lux b/stdlib/source/library/lux/world/db/jdbc.lux
index 8fb53e9b0..e9df26b7f 100644
--- a/stdlib/source/library/lux/world/db/jdbc.lux
+++ b/stdlib/source/library/lux/world/db/jdbc.lux
@@ -1,29 +1,29 @@
(.module:
[library
- [lux (#- and int)
+ [lux {"-" [and int]}
[control
- [functor (#+ Functor)]
- [apply (#+ Apply)]
- [monad (#+ Monad do)]
- ["." try (#+ Try)]
+ [functor {"+" [Functor]}]
+ [apply {"+" [Apply]}]
+ [monad {"+" [Monad do]}]
+ ["." try {"+" [Try]}]
["ex" exception]
[concurrency
- ["." async (#+ Async) ("#\." monad)]]
+ ["." async {"+" [Async]} ("#\." monad)]]
[security
- ["!" capability (#+ capability:)]]]
+ ["!" capability {"+" [capability:]}]]]
[data
["." product]
[text
- ["%" format (#+ format)]]]
- ["." io (#+ IO)]
+ ["%" format {"+" [format]}]]]
+ ["." io {"+" [IO]}]
[world
- [net (#+ URL)]]
- [host (#+ import:)]]]
+ [net {"+" [URL]}]]
+ [host {"+" [import:]}]]]
[//
["." sql]]
- ["." / #_
- ["#." input (#+ Input)]
- ["#." output (#+ Output)]])
+ ["." / "_"
+ ["#." input {"+" [Input]}]
+ ["#." output {"+" [Output]}]])
(import: java/lang/String)
diff --git a/stdlib/source/library/lux/world/db/jdbc/input.lux b/stdlib/source/library/lux/world/db/jdbc/input.lux
index 633663bcf..790e60c83 100644
--- a/stdlib/source/library/lux/world/db/jdbc/input.lux
+++ b/stdlib/source/library/lux/world/db/jdbc/input.lux
@@ -1,16 +1,16 @@
(.module:
[library
- [lux (#- and int)
- [ffi (#+ import:)]
+ [lux {"-" [and int]}
+ [ffi {"+" [import:]}]
[control
- [functor (#+ Contravariant)]
- [monad (#+ Monad do)]
- ["." try (#+ Try)]]
+ [functor {"+" [Contravariant]}]
+ [monad {"+" [Monad do]}]
+ ["." try {"+" [Try]}]]
[time
- ["." instant (#+ Instant)]]
- ["." io (#+ IO)]
+ ["." instant {"+" [Instant]}]]
+ ["." io {"+" [IO]}]
[world
- [binary (#+ Binary)]]]])
+ [binary {"+" [Binary]}]]]])
(import: java/lang/String)
diff --git a/stdlib/source/library/lux/world/db/jdbc/output.lux b/stdlib/source/library/lux/world/db/jdbc/output.lux
index dd3e19751..c36a4f2c0 100644
--- a/stdlib/source/library/lux/world/db/jdbc/output.lux
+++ b/stdlib/source/library/lux/world/db/jdbc/output.lux
@@ -1,18 +1,18 @@
(.module:
[library
- [lux (#- and int)
- [ffi (#+ import:)]
+ [lux {"-" [and int]}
+ [ffi {"+" [import:]}]
[control
- [functor (#+ Functor)]
- [apply (#+ Apply)]
- [monad (#+ Monad do)]
+ [functor {"+" [Functor]}]
+ [apply {"+" [Apply]}]
+ [monad {"+" [Monad do]}]
["ex" exception]
- ["." try (#+ Try)]]
+ ["." try {"+" [Try]}]]
[time
- ["." instant (#+ Instant)]]
- ["." io (#+ IO)]
+ ["." instant {"+" [Instant]}]]
+ ["." io {"+" [IO]}]
[world
- [binary (#+ Binary)]]]])
+ [binary {"+" [Binary]}]]]])
(import: java/lang/String)
diff --git a/stdlib/source/library/lux/world/db/sql.lux b/stdlib/source/library/lux/world/db/sql.lux
index aff994825..1db248bbb 100644
--- a/stdlib/source/library/lux/world/db/sql.lux
+++ b/stdlib/source/library/lux/world/db/sql.lux
@@ -1,13 +1,13 @@
(.module:
[library
- [lux (#- Source Definition function and or not type int)
+ [lux {"-" [Source Definition function and or not type int]}
[control
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[data
[number
["i" int]]
["." text ("#\." equivalence)
- ["%" format (#+ format)]]
+ ["%" format {"+" [format]}]]
[collection
["." list ("#\." functor)]]]
[macro