Download |
@@ -8467,11 +8535,11 @@ Test
-
+
-
+
Define |
|
-
+
Run |
@@ -8556,61 +8624,61 @@ Configuration
Manages configurations with system property & env var support
-
+
-
+
Build |
|
-
+
File |
|
-
+
Env |
|
-
+
Properties |
@@ -8630,49 +8698,49 @@ Component
Managing lifecycle and dependencies of components
-
+
-
+
Build |
|
-
+
Protocol |
|
-
+
Util |
@@ -8692,28 +8760,28 @@ App
Venice application archive
-
+
-
+
Build |
|
-
+
Manifest |
@@ -8733,16 +8801,16 @@ Benchmark
-
+
-
+
Utils |
@@ -9771,7 +9839,7 @@ Function Details
*loaded-modules*
-=> #{:crypt :csv :xchart :docker :trace :java :fonts :xml :semver :json :cidr :app :geoip :hexdump :test :inet :io :maven :grep :sandbox :ansi :benchmark :str :gradle :excel :core :regex :component :pdf :parsifal :shell :math :time :config :kira :qrref}
+=> #{:crypt :csv :xchart :docker :trace :java :fonts :xml :semver :json :cidr :cargo :app :geoip :hexdump :test :inet :io :maven :grep :sandbox :ansi :benchmark :str :gradle :excel :core :regex :component :pdf :cargo-arangodb :parsifal :shell :math :time :config :kira :qrref}
@@ -10409,7 +10477,7 @@ Function Details
;; invoke static method
(. :java.time.ZonedDateTime :now)
-=> 2023-09-18T22:14:36.225+02:00[Europe/Zurich]
+=> 2023-09-23T23:36:06.832+02:00[Europe/Zurich]
;; invoke static method
(. :java.lang.Math :min 10 20)
@@ -12093,7 +12161,7 @@ Function Details
-
+
@@ -12135,7 +12203,7 @@ Function Details
-
+
@@ -12173,7 +12241,7 @@ Function Details
-
+
@@ -12211,7 +12279,7 @@ Function Details
-
+
@@ -12298,7 +12366,7 @@ Function Details
-
+
@@ -12395,7 +12463,7 @@ Function Details
-
+
@@ -12441,7 +12509,7 @@ Function Details
-
+
@@ -12479,7 +12547,7 @@ Function Details
-
+
@@ -12517,7 +12585,7 @@ Function Details
-
+
@@ -12725,7 +12793,7 @@ Function Details
-
+
@@ -12767,7 +12835,7 @@ Function Details
"data/logo.jpg" "staging/data/logo.jpg" }
".")
Loading Venice files works relative to the application. You can only load files that are in the app archive. If for instances "billing.venice" in the above example requires "utils/render.venice" just add (load-file "utils/render.venice") to "billing.venice".
- The app can be run from the command line as: > java -jar venice-1.10.42.jar -app billing.zip Venice reads the archive and loads the archive's main file.
+ The app can be run from the command line as: > java -jar venice-1.10.43.jar -app billing.zip Venice reads the archive and loads the archive's main file.
Or with additional Java libraries (all JARs in 'libs' dir): > java -cp "libs/*" com.github.jlangch.venice.Launcher -app billing.zip
@@ -12781,7 +12849,7 @@ Function Details
-
+
@@ -14264,7 +14332,7 @@ Function Details
-
+
@@ -15685,7 +15753,7 @@ Function Details
(defn f3 [x] (f4 x))
(defn f4 [x] (callstack))
(f1 100))
-=> [{:fn-name "callstack" :file "example" :line 30 :col 18} {:fn-name "user/f4" :file "example" :line 29 :col 18} {:fn-name "user/f3" :file "example" :line 28 :col 18} {:fn-name "user/f2" :file "example" :line 27 :col 18} {:fn-name "user/f1" :file "example" :line 31 :col 5}]
+=> [{:fn-name "callstack" :file "example" :line 32 :col 18} {:fn-name "user/f4" :file "example" :line 31 :col 18} {:fn-name "user/f3" :file "example" :line 30 :col 18} {:fn-name "user/f2" :file "example" :line 29 :col 18} {:fn-name "user/f1" :file "example" :line 33 :col 5}]
@@ -15832,6 +15900,356 @@ Function Details
+
+
+
+
+
+
+
+
+ (cargo-arangodb/start cname version mapped-port root-passwd memory cores log)
+
+
+
+
+
+
+
+
+
+
+ Starts an ArangoDB container.
+
+
+
+If a container with another version exists for the container name remove the container and the image
+
+Pull the image if not yet locally available
+
+If the container already runs - use it
+
+If the container is available but does not run - start it (docker/start ...)
+
+If the container is not available - run it (docker/run ...)
+
+Finally check for a successful startup. The container log must contain the string ". is ready for business. Have fun. " on the last line.
+
+
+
+
+
+
+
+
+ |
+A unique container name |
+
+
+ |
+The ArangoDB version to use. E.g.: 3.10.10 |
+
+
+ |
+The published (mapped) ArangoDB port on the host |
+
+
+ |
+The ArangoDB root password |
+
+
+ |
+The detected memory ArangoDB is to use. E.g.: 8GB, 8000MB |
+
+
+ |
+The detected number of cores ArangoDB is to use |
+
+
+ |
+A log function (may be nil ) |
+
+
+
+
+
+
+
+
+
+
+
+
+ ;; Run an ArangoDB container
+(cargo-arangodb/start "arangodb-test"
+ "3.10.10"
+ 8500
+ "test"
+ "8GB"
+ 1
+ (fn [s] (println "ArangoDB:" s)))
+
+
+
+
+
+
+
+
+
+
+ Stops an ArangoDB container
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (cargo-arangodb/stop cname log)
+
+
+
+
+
+
+
+
+
+
+ Stops an ArangoDB container
+
+
+
+
+
+ |
+A unique container name |
+
+
+ |
+A log function (may be nil ) |
+
+
+
+
+
+
+
+
+
+
+
+
+ (cargo-arangodb/stop "arangodb-test"
+ (fn [s] (println "ArangoDB:" s)))
+
+
+
+
+
+
+
+
+
+
+ Starts an ArangoDB container.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (cargo/start cname repo version publish envs args ready? log)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+If a container with the passed name exists or is running in another version, stop that container and remove it together with the image
+
+Pull the image if it is not yet locally available
+
+If the container runs with the requested version already - use it
+
+If the container is available but does not run - start it using (docker/start ...)
+
+If the container is not available - run it using (docker/run ...)
+
+Finally check for a successful startup using the supplied ready? function. E.g.: ready? may scan the container logs for a successful startup message.
+
+
+
+
+
+
+
+
+ |
+A unique container name |
+
+
+ |
+The image repository |
+
+
+ |
+The image version |
+
+
+ |
+The port publish |
+
+
+ |
+Env variables |
+
+
+ |
+Arguments for the process run in the container |
+
+
+ |
+A function to decide if the container is ready (may be nil ) |
+
+
+ |
+A log function (may be nil ) |
+
+
+
+
+
+
+
+
+
+
+
+
+ ;; Run an ArangoDB container
+(cargo/start "arangodb-test"
+ "arangodb/arangodb"
+ "3.10.10"
+ "8500:8259"
+ ["ARANGO_ROOT_PASSWORD=test"
+ "ARANGODB_OVERRIDE_DETECTED_TOTAL_MEMORY=8GB"
+ "ARANGODB_OVERRIDE_DETECTED_NUMBER_OF_CORES=1"]
+ ["--server.endpoint tcp://0.0.0.0:8259"]
+ (fn [cname] true)
+ (fn [s] (println "ArangoDB:" s)))
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (cargo/stop cname log)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+A unique container name |
+
+
+ |
+A log function (may be nil ) |
+
+
+
+
+
+
+
+
+
+
+
+
+ ;; Stop an ArangoDB container
+(cargo/stop "arangodb-test"
+ (fn [s] (println "ArangoDB:" s)))
+
+
+
+
+
+
+
+
+
+
+ Starts a container.
+
+
+
+
+
+
+
+
@@ -17675,7 +18093,7 @@ Function Details
(complement even?)
-=> anonymous-7460f709-802a-479e-a354-181c8f6e1151
+=> anonymous-7a19f67a-006b-446e-99a8-1eb274e24b3a
(filter (complement even?) '(1 2 3 4))
=> (1 3)
@@ -17802,7 +18220,7 @@ Function Details
-
+
@@ -17833,7 +18251,7 @@ Function Details
-
+
@@ -17897,12 +18315,12 @@ Function Details
-
+
Returns the dependencies of the component 'c' or nil if there aren't any dependencies.
-
+
Returns id of the component 'c'.
@@ -17912,7 +18330,7 @@ Function Details
-
+
@@ -17976,12 +18394,12 @@ Function Details
-
+
Returns a dependency given by its key 'k' from the component 'c' dependencies.
-
+
Returns id of the component 'c'.
@@ -17991,7 +18409,7 @@ Function Details
-
+
@@ -18049,12 +18467,12 @@ Function Details
-
+
Returns a dependency given by its key 'k' from the component 'c' dependencies.
-
+
Returns the dependencies of the component 'c' or nil if there aren't any dependencies.
@@ -18064,7 +18482,7 @@ Function Details
-
+
@@ -18122,7 +18540,7 @@ Function Details
-
+
Associates a component dependency graph with the 'system' that has been created through a call to system-map. 'dependency-map' is a ...
@@ -18132,7 +18550,7 @@ Function Details
-
+
@@ -18225,7 +18643,7 @@ Function Details
-
+
Returns a system constructed of components given as key/value pairs. The 'key' is a keyword (the component's id) referencing the component ...
@@ -18543,7 +18961,7 @@ Function Details
-
+
@@ -18653,32 +19071,32 @@ Function Details
-
+
Reads a JSON configuration part from given file f.
-
+
Reads a JSON configuration part from given path in classpath.
-
+
Reads a configuration value from an environment variable and associates it to the given path in a map.
-
+
Reads a configuration value from an system property and associates it to the given path in a map.
-
+
Reads configuration part from environment variables, filtered by a prefix. nil may passed as prefix to get env vars.
-
+
Reads configuration part from system properties, filtered by a prefix. nil may passed as prefix to get property vars.
@@ -18688,7 +19106,7 @@ Function Details
-
+
@@ -18753,17 +19171,17 @@ Function Details
-
+
Reads a configuration value from an environment variable and associates it to the given path in a map.
-
+
Reads configuration part from system properties, filtered by a prefix. nil may passed as prefix to get property vars.
-
+
Merges given configuration parts and returns it as a map.
@@ -18773,7 +19191,7 @@ Function Details
-
+
@@ -18820,17 +19238,17 @@ Function Details
-
+
Reads a configuration value from an system property and associates it to the given path in a map.
-
+
Reads configuration part from environment variables, filtered by a prefix. nil may passed as prefix to get env vars.
-
+
Merges given configuration parts and returns it as a map.
@@ -18840,7 +19258,7 @@ Function Details
-
+
@@ -18912,12 +19330,12 @@ Function Details
-
+
Reads a JSON configuration part from given path in classpath.
-
+
Merges given configuration parts and returns it as a map.
@@ -18932,7 +19350,7 @@ Function Details
-
+
@@ -18971,12 +19389,12 @@ Function Details
-
+
Reads a configuration value from an system property and associates it to the given path in a map.
-
+
Merges given configuration parts and returns it as a map.
@@ -18986,7 +19404,7 @@ Function Details
-
+
@@ -19036,17 +19454,17 @@ Function Details
-
+
Reads a configuration value from an environment variable and associates it to the given path in a map.
-
+
Reads configuration part from system properties, filtered by a prefix. nil may passed as prefix to get property vars.
-
+
Merges given configuration parts and returns it as a map.
@@ -19056,7 +19474,7 @@ Function Details
-
+
@@ -19099,12 +19517,12 @@ Function Details
-
+
Reads a JSON configuration part from given file f.
-
+
Merges given configuration parts and returns it as a map.
@@ -20247,7 +20665,7 @@ Function Details
(current-time-millis)
-=> 1695068116075
+=> 1695505007247
@@ -24378,11 +24796,11 @@ Function Details
(->> (lazy-seq #(rand-long 100))
(take 4)
(doall))
-=> (9 27 52 14)
+=> (5 58 58 86)
(->> (lazy-seq #(rand-long 100))
(doall 4))
-=> (33 50 40 90)
+=> (75 36 84 30)
@@ -24449,10 +24867,10 @@ Function Details
(dobench 100 (+ 1 1))
-=> (16929 658 135 109 139 13075 125 108 108 98 107 96 102 103 108 103 92 89 112 110 114 102 110 137 95 108 88 118 101 119 93 131 99 150 87 148 96 90 100 106 112 111 120 86 98 101 353 107 128 18806 141 139 113 103 125 105 125 93 138 128 106 103 100 100 123 115 94 87 105 101 103 100 116 117 113 91 93 120 103 112 95 121 103 114 120 102 132 111 252 129 123 126 120 125 165 133 139 143 121 161)
+=> (22674 3066 321 122 124 135 123 115 119 121 115 119 116 122 115 116 116 115 127 115 116 124 115 117 116 114 127 112 123 113 120 117 120 116 122 118 111 143 132 114 144 121 114 114 116 115 129 117 119 108 115 115 111 113 115 183 94 109 104 105 138 107 109 120 105 140 101 108 131 105 141 111 110 105 126 105 111 112 103 108 106 116 104 114 103 101 131 113 194 122 111 119 109 112 137 114 111 109 121 144)
(dobench 1000 2 100 (+ 1 1))
-=> (18619 548 88 70 67 71 68 67 63 60 65 64 61 67 62 62 60 60 61 61 85 59 61 62 63 62 61 62 61 86 63 61 82 59 62 62 60 64 64 64 62 63 65 66 63 60 64 60 60 63 62 60 62 61 63 62 61 60 60 61 66 62 61 61 80 61 62 82 62 64 62 62 59 62 69 62 63 62 60 65 61 91 61 60 63 61 76 60 61 58 58 61 60 62 59 61 62 63 63 64)
+=> (29052 13483 130 74 70 97 74 72 77 73 72 68 83 70 73 74 74 68 71 78 70 71 85 69 66 86 68 71 70 66 64 66 70 95 70 71 70 68 68 71 65 97 69 70 96 69 71 69 68 70 68 70 67 95 69 71 66 125 66 69 81 71 67 67 71 73 67 68 98 74 72 72 68 70 69 70 95 68 70 69 72 70 70 117 69 67 70 68 68 68 70 94 67 67 71 72 70 67 67 97)
@@ -25322,16 +25740,16 @@ Function Details
-:archive {true, false} |
-Archive mode (copy all uid/gid information) |
+:archive {true, false} |
+Archive mode (copy all uid/gid information) |
-:follow-link {true, false} |
-Always follow symbol link in SRC_PATH |
+:follow-link {true, false} |
+Always follow symbol link in SRC_PATH |
-:quiet {true, false} |
-Suppress progress output during copy. Progress output is automatically suppressed if no terminal is attached |
+:quiet {true, false} |
+Suppress progress output during copy. Progress output is automatically suppressed if no terminal is attached |
@@ -25410,16 +25828,16 @@ Function Details
- |
-No debug output |
+ |
+No debug output |
- |
-Prints the raw docker command line to the current stdout channel ahead of running the command |
+ |
+Prints the raw docker command line to the current stdout channel ahead of running the command |
- |
-Prints the raw docker command line to the current stdout channel without running the command |
+ |
+Prints the raw docker command line to the current stdout channel without running the command |
@@ -25689,8 +26107,9 @@ Function Details
- (println (docker/image-pull "arangodb/arangodb:3.10.10"))
-(println (docker/image-pull "arangodb/arangodb"))
+ (println (docker/image-pull "arangodb/arangodb:3.10.10"))
+
+ (println (docker/image-pull "arangodb/arangodb"))
@@ -26492,44 +26911,44 @@ Function Details
-:detach {true, false} |
-Run container in background and return container ID |
+:detach {true, false} |
+Run container in background and return container ID |
-:attach {stdin, stdout, stderr} |
-Attach to STDIN, STDOUT or STDERR |
+:attach {stdin, stdout, stderr} |
+Attach to STDIN, STDOUT or STDERR |
-:publish port |
-Publish a container's port to the host. To expose port 8080 inside the container to port 3000 outside the container, pass "3000:8080" |
+:publish port |
+Publish a container's port to the host. To expose port 8080 inside the container to port 3000 outside the container, pass "3000:8080" |
-:envs vars |
-Set environment variable (a sequence of env var defs) |
+:envs vars |
+Set environment variable (a sequence of env var defs) |
-:memory limit |
-Memory limit |
+:memory limit |
+Memory limit |
-:name name |
-Assign a name to the container |
+:name name |
+Assign a name to the container |
-:quiet {true, false} |
-Suppress the pull output |
+:quiet {true, false} |
+Suppress the pull output |
-:volumes vol |
-Bind mount a volume (a sequence of volume defs) |
+:volumes vol |
+Bind mount a volume (a sequence of volume defs) |
-:workdir dir |
-Working directory inside the container |
+:workdir dir |
+Working directory inside the container |
-:args args |
-Arguments passed to container process (a sequence of args or a string) |
+:args args |
+Arguments passed to container process (a sequence of args or a string) |
@@ -26926,12 +27345,12 @@ Function Details
-:format {:string, :json} |
-Returns the output either as a string or as JSON data |
+:format {:string, :json} |
+Returns the output either as a string or as JSON data |
-:version {:full, :server, :client} |
-Returns full (default), server, or client version |
+:version {:full, :server, :client} |
+Returns full (default), server, or client version |
@@ -28833,7 +29252,7 @@ Function Details
Exception in thread "main" ValueException:
[Callstack]
- at: ex (example: line 26, col 43)
+ at: ex (example: line 28, col 43)
=> nil
(println (ex-venice-stacktrace (ex :RuntimeException "message")))
@@ -28841,7 +29260,7 @@ Function Details
=> nil
(println (ex-venice-stacktrace (ex :ValueException [10 20]) :list))
-({:fn ex :file example :line 26 :col 43})
+({:fn ex :file example :line 28 :col 43})
=> nil
@@ -28978,7 +29397,7 @@ Function Details
-
+
@@ -29099,27 +29518,27 @@ Function Details
-
+
Build an area chart data series
-
+
Build a cell address range
@@ -29129,7 +29548,7 @@ Function Details
-
+
@@ -29274,27 +29693,27 @@ Function Details
-
+
Build a bar chart data series
-
+
Build a cell address range
@@ -29304,7 +29723,7 @@ Function Details
-
+
@@ -29405,17 +29824,17 @@ Function Details
-
+
Adds a sheet with optional attributes to an Excel.
-
+
Add font with optional attributes to an Excel.
-
+
Add a style with optional attributes to an Excel.
@@ -29425,7 +29844,7 @@ Function Details
-
+
@@ -29511,12 +29930,12 @@ Function Details
-
+
Add a style with optional attributes to an Excel.
-
+
Adds a sheet with optional attributes to an Excel.
@@ -29526,7 +29945,7 @@ Function Details
-
+
@@ -29582,32 +30001,32 @@ Function Details
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of all columns in the sheet.
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Set the height of a row (1..n) in the sheet.
@@ -29617,7 +30036,7 @@ Function Details
-
+
@@ -29756,27 +30175,27 @@ Function Details
-
+
Build a line chart data series
-
+
Build a cell address range
@@ -29786,7 +30205,7 @@ Function Details
-
+
@@ -29840,7 +30259,7 @@ Function Details
-
+
Adds a sheet with optional attributes to an Excel.
@@ -29850,7 +30269,7 @@ Function Details
-
+
@@ -29952,27 +30371,27 @@ Function Details
-
+
Build a pie chart data series
-
+
Build a cell address range
@@ -29982,7 +30401,7 @@ Function Details
-
+
@@ -30095,12 +30514,12 @@ Function Details
-
+
Defines a column with optional attributes on the sheet.
-
+
Add a merge region to the sheet.
@@ -30110,7 +30529,7 @@ Function Details
-
+
@@ -30256,12 +30675,12 @@ Function Details
-
+
Add font with optional attributes to an Excel.
-
+
Adds a sheet with optional attributes to an Excel.
@@ -30271,7 +30690,7 @@ Function Details
-
+
@@ -30331,12 +30750,12 @@ Function Details
-
+
Returns an Excel A-style column number string representation for a column number
-
+
Set a formula for a specific cell given by its row and col.
@@ -30346,7 +30765,7 @@ Function Details
-
+
@@ -30399,7 +30818,7 @@ Function Details
-
+
Build a cell address range
@@ -30409,7 +30828,7 @@ Function Details
-
+
@@ -30460,32 +30879,32 @@ Function Details
-
+
Auto size the width of all columns in the sheet.
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Set the height of a row (1..n) in the sheet.
@@ -30495,7 +30914,7 @@ Function Details
-
+
@@ -30544,32 +30963,32 @@ Function Details
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Set the height of a row (1..n) in the sheet.
@@ -30579,7 +30998,7 @@ Function Details
-
+
@@ -30632,7 +31051,7 @@ Function Details
-
+
Build a cell address range
@@ -30642,7 +31061,7 @@ Function Details
-
+
@@ -30714,17 +31133,17 @@ Function Details
-
+
Add a style with optional attributes to an Excel.
-
+
Add font with optional attributes to an Excel.
-
+
Apply a defined cell style to a cell
@@ -30734,7 +31153,7 @@ Function Details
-
+
@@ -30772,7 +31191,7 @@ Function Details
-
+
Returns the cell address in A1 style for a cell at row/col in a sheet
@@ -30782,7 +31201,7 @@ Function Details
-
+
@@ -30833,37 +31252,37 @@ Function Details
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -30873,7 +31292,7 @@ Function Details
-
+
@@ -30947,42 +31366,42 @@ Function Details
-
+
Returns an Excel A1-style cell address string representation for a row and column address
-
+
Returns a sum formula for the given cell area
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Auto size the width of all columns in the sheet.
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Set the height of a row (1..n) in the sheet.
@@ -30992,7 +31411,7 @@ Function Details
-
+
@@ -31044,42 +31463,42 @@ Function Details
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -31089,7 +31508,7 @@ Function Details
-
+
@@ -31175,17 +31594,17 @@ Function Details
-
+
Add a style with optional attributes to an Excel.
-
+
Add font with optional attributes to an Excel.
-
+
Writes a value to a specific cell given by its row and col.
@@ -31195,7 +31614,7 @@ Function Details
-
+
@@ -31256,42 +31675,42 @@ Function Details
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown } after formula ...
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -31301,7 +31720,7 @@ Function Details
-
+
@@ -31341,7 +31760,7 @@ Function Details
-
+
Returns an Excel A1-style cell address string representation for a row and column address
@@ -31351,7 +31770,7 @@ Function Details
-
+
@@ -31403,37 +31822,37 @@ Function Details
-
+
Set the height of a row (1..n) in the sheet.
-
+
Auto size the width of all columns in the sheet.
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of column col (1..n) in the sheet.
@@ -31443,7 +31862,7 @@ Function Details
-
+
@@ -31498,7 +31917,7 @@ Function Details
-
+
@@ -31544,7 +31963,7 @@ Function Details
-
+
@@ -31592,7 +32011,7 @@ Function Details
-
+
Creates a new Excel builder for the given type :xls or :xlsx.
@@ -31602,7 +32021,7 @@ Function Details
-
+
@@ -31650,7 +32069,7 @@ Function Details
-
+
Add a merge region to the sheet.
@@ -31660,7 +32079,7 @@ Function Details
-
+
@@ -31724,7 +32143,7 @@ Function Details
-
+
Build a cell address range
@@ -31734,7 +32153,7 @@ Function Details
-
+
@@ -31777,17 +32196,17 @@ Function Details
-
+
Returns the number of sheets in the Excel.
-
+
Returns a sheet from the Excel reader referenced by its name or sheet index.
-
+
Evaluate all formulas in the Excel.
@@ -31797,7 +32216,7 @@ Function Details
-
+
@@ -31846,7 +32265,7 @@ Function Details
-
+
Build a cell address range
@@ -31856,7 +32275,7 @@ Function Details
-
+
@@ -31905,42 +32324,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
-
+
Returns the sheet cell value.
@@ -31950,7 +32369,7 @@ Function Details
-
+
@@ -32002,42 +32421,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
-
+
Returns the sheet cell value.
@@ -32047,7 +32466,7 @@ Function Details
-
+
@@ -32099,42 +32518,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value.
@@ -32144,7 +32563,7 @@ Function Details
-
+
@@ -32193,37 +32612,37 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value.
@@ -32233,7 +32652,7 @@ Function Details
-
+
@@ -32283,42 +32702,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -32328,7 +32747,7 @@ Function Details
-
+
@@ -32395,42 +32814,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
-
+
Returns the sheet cell value.
@@ -32440,7 +32859,7 @@ Function Details
-
+
@@ -32489,42 +32908,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
-
+
Returns the sheet cell value.
@@ -32534,7 +32953,7 @@ Function Details
-
+
@@ -32584,42 +33003,42 @@ Function Details
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -32629,7 +33048,7 @@ Function Details
-
+
@@ -32680,37 +33099,37 @@ Function Details
-
+
Set the width of a column (1..n) in the sheet.
-
+
Auto size the width of all columns in the sheet.
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of column col (1..n) in the sheet.
@@ -32720,7 +33139,7 @@ Function Details
-
+
@@ -32772,67 +33191,67 @@ Function Details
-
+
Returns the number of sheets in the Excel.
-
+
Evaluate all formulas in the Excel.
-
+
Returns the name of a sheet.
-
+
Returns the first and the last row with data in a sheet as vector. Returns -1 values if no row exists.
-
+
Returns the first and the last col with data in a sheet row as vector. Returns -1 values if the row does not exist or the row does ...
-
+
Returns true if the sheet cell given by row/col is empty.
-
+
Returns the sheet cell type as one of { :notfound, :blank, :string, :boolean, :numeric, :formula, :error, or :unknown }
-
+
Returns the sheet cell value as string.
-
+
Returns the sheet cell value as boolean.
-
+
Returns the sheet cell value as long.
-
+
Returns the sheet cell value as double.
-
+
Returns the sheet cell value as a date (:java.time.LocalDate).
-
+
Returns the sheet cell value as a datetime (:java.time.LocalDateTime).
@@ -32842,7 +33261,7 @@ Function Details
-
+
@@ -32891,7 +33310,7 @@ Function Details
-
+
Returns the first and the last row with data in a sheet as vector. Returns -1 values if no row exists.
@@ -32901,7 +33320,7 @@ Function Details
-
+
@@ -32949,12 +33368,12 @@ Function Details
-
+
Returns a sheet from the Excel reader referenced by its name or sheet index.
-
+
Evaluate all formulas in the Excel.
@@ -32964,7 +33383,7 @@ Function Details
-
+
@@ -33013,7 +33432,7 @@ Function Details
-
+
@@ -33062,7 +33481,7 @@ Function Details
-
+
@@ -33111,7 +33530,7 @@ Function Details
-
+
Returns the first and the last col with data in a sheet row as vector. Returns -1 values if the row does not exist or the row does ...
@@ -33121,7 +33540,7 @@ Function Details
-
+
@@ -33175,7 +33594,7 @@ Function Details
-
+
Returns an Excel A1-style cell address string representation for a row and column address
@@ -33185,7 +33604,7 @@ Function Details
-
+
@@ -33234,12 +33653,12 @@ Function Details
-
+
Writes the excel to a file.
-
+
Writes the excel to a Java :OutputStream.
@@ -33249,7 +33668,7 @@ Function Details
-
+
@@ -33298,12 +33717,12 @@ Function Details
-
+
Writes the excel to a Java :OutputStream.
-
+
Writes the excel to a bytebuf. Returns the bytebuf.
@@ -33313,7 +33732,7 @@ Function Details
-
+
@@ -33363,12 +33782,12 @@ Function Details
-
+
Writes the excel to a file.
-
+
Writes the excel to a bytebuf. Returns the bytebuf.
@@ -33378,7 +33797,7 @@ Function Details
-
+
@@ -33438,12 +33857,12 @@ Function Details
-
+
Writes the excel to a Java :OutputStream.
-
+
Writes the excel to a bytebuf. Returns the bytebuf.
@@ -33453,7 +33872,7 @@ Function Details
-
+
@@ -33501,32 +33920,32 @@ Function Details
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of all columns in the sheet.
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Set the height of a row (1..n) in the sheet.
@@ -33536,7 +33955,7 @@ Function Details
-
+
@@ -33585,32 +34004,32 @@ Function Details
-
+
Render a single data item to the sheet
-
+
Writes a value to a specific cell given by its row and col.
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of all columns in the sheet.
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Set the height of a row (1..n) in the sheet.
@@ -33620,7 +34039,7 @@ Function Details
-
+
@@ -33692,32 +34111,32 @@ Function Details
-
+
Writes the passed data items, a sequence of maps of name/value pairs, to the sheet.
-
+
Render a single data item to the sheet
-
+
Set a formula for a specific cell given by its row and col.
-
+
Auto size the width of all columns in the sheet.
-
+
Auto size the width of column col (1..n) in the sheet.
-
+
Set the height of a row (1..n) in the sheet.
@@ -33727,7 +34146,7 @@ Function Details
-
+
@@ -33776,37 +34195,37 @@ Function Details
-
+
Adds a sheet with optional attributes to an Excel.
-
+
Add font with optional attributes to an Excel.
-
+
Add a style with optional attributes to an Excel.
-
+
Writes the excel to a file.
-
+
Writes the excel to a Java :OutputStream.
-
+
Writes the excel to a bytebuf. Returns the bytebuf.
-
+
Evaluate all formulas in the Excel.
@@ -35101,7 +35520,7 @@ Function Details
-
+
@@ -36014,8 +36433,8 @@ Function Details
(fn [] (log "Worker" n)))
(apply futures-wait (futures-fork 3 factory)))
Worker0
-Worker1
-Worker2
+Worker2
+Worker1
=> nil
@@ -36159,9 +36578,9 @@ Function Details
(defn factory [n]
(fn [] (log "Worker" n)))
(apply futures-wait (futures-fork 3 factory)))
- Worker1
+Worker2
Worker0
-Worker2
+Worker1
=> nil
@@ -36270,7 +36689,7 @@ Function Details
-
+
@@ -36315,7 +36734,7 @@ Function Details
-
+
@@ -36357,12 +36776,12 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database. Returns the DB as bytebuffer. The type is either :country or :city.
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
@@ -36372,7 +36791,7 @@ Function Details
-
+
@@ -36414,12 +36833,12 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database. Returns the DB as bytebuffer. The type is either :country or :city.
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
@@ -36429,7 +36848,7 @@ Function Details
-
+
@@ -36470,27 +36889,27 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Returns a resolve function that resolves an IP addresses to its associated country. The resolve function returns the country information ...
-
+
Returns a resolve function that resolves an IP address to its associated country and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
@@ -36500,7 +36919,7 @@ Function Details
-
+
@@ -36541,7 +36960,7 @@ Function Details
-
+
Downloads the Google country database. The database holds a mapping from country to location (latitude/longitude).
@@ -36551,7 +36970,7 @@ Function Details
-
+
@@ -36592,12 +37011,12 @@ Function Details
-
+
Build the URL for the MaxMind country GEO IP database. The download requires a license key that is sent as part of the URL.
-
+
Build the URL for downloading the MaxMind city GEO IP database.
@@ -36607,7 +37026,7 @@ Function Details
-
+
@@ -36650,12 +37069,12 @@ Function Details
-
+
Build the URL for the MaxMind country GEO IP database. The download requires a license key that is sent as part of the URL.
-
+
Build the URL for downloading the MaxMind city GEO IP database.
@@ -36665,7 +37084,7 @@ Function Details
-
+
@@ -36733,27 +37152,27 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Returns a resolve function that resolves an IP addresses to its associated country. The resolve function returns the country information ...
-
+
Returns a resolve function that resolves an IP address to its associated country and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves countries given by a country 2-digit ISO code to its latitude/longitude location. The resolve ...
@@ -36763,7 +37182,7 @@ Function Details
-
+
@@ -36831,27 +37250,27 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Returns a resolve function that resolves an IP addresses to its associated country. The resolve function returns the country information ...
-
+
Returns a resolve function that resolves an IP address to its associated country and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves countries given by a country 2-digit ISO code to its latitude/longitude location. The resolve ...
@@ -36861,7 +37280,7 @@ Function Details
-
+
@@ -36909,27 +37328,27 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Returns a resolve function that resolves an IP addresses to its associated country. The resolve function returns the country information ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves countries given by a country 2-digit ISO code to its latitude/longitude location. The resolve ...
@@ -36939,7 +37358,7 @@ Function Details
-
+
@@ -37001,27 +37420,27 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Returns a resolve function that resolves an IP address to its associated country and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves an IP address to its associated city and latitude/longitude location. The resolve function ...
-
+
Returns a resolve function that resolves countries given by a country 2-digit ISO code to its latitude/longitude location. The resolve ...
@@ -37031,7 +37450,7 @@ Function Details
-
+
@@ -37073,7 +37492,7 @@ Function Details
-
+
@@ -37122,12 +37541,12 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Parses the MaxMind country-location CSV file. Returns a map with the country geoname-id as key and the country data as value.
@@ -37137,7 +37556,7 @@ Function Details
-
+
@@ -37201,17 +37620,17 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Parses the MaxMind city-location CSV file. Returns a map with the city geoname-id as key and the city/country data as value.
-
+
Parses the MaxMind country IP blocks database. Expects a Maxmind country IP database zip. ip-type is either :IPv4 or :IPv6. The zip ...
@@ -37221,7 +37640,7 @@ Function Details
-
+
@@ -37268,12 +37687,12 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Parses the MaxMind city-location CSV file. Returns a map with the city geoname-id as key and the city/country data as value.
@@ -37283,7 +37702,7 @@ Function Details
-
+
@@ -37352,17 +37771,17 @@ Function Details
-
+
Downloads the MaxMind country or city GEO IP database to the given ZIP file. The type is either :country or :city.
-
+
Parses the MaxMind country-location CSV file. Returns a map with the country geoname-id as key and the country data as value.
-
+
Parses the MaxMind city IP blocks database. Expects a MaxMind city IP database zip. ip-type is either :IPv4 or :IPv6. The zip may be ...
@@ -37599,7 +38018,7 @@ Function Details
-
+
@@ -37652,7 +38071,7 @@ Function Details
-
+
Search for lines that match a regular expression in text files within ZIP files. The search chooses all files in the ZIP that match ...
@@ -37667,7 +38086,7 @@ Function Details
- | | | | | |