@@ -23,7 +23,7 @@ aljibe de madera.
23
23
Add the following dependency to your project.clj file:
24
24
25
25
``` clojure
26
- funcool/cuerdas {:mvn/version " RELEASE " }
26
+ funcool/cuerdas {:mvn/version " 2022.03.27-397 " }
27
27
```
28
28
29
29
## Quick start
@@ -87,12 +87,43 @@ first line
87
87
another line
88
88
```
89
89
90
+ ### concat
91
+
92
+ This is a macro variant of ` clojure.core/str ` function that performs
93
+ string concatenation. It is considerably faster on CLJS and slightly
94
+ faster on JVM.
95
+
96
+ On CLJS, it uses the ` + ` native operator to perform the concatenation
97
+ that is more optimized than the ` [].join(...) ` for the vast majority
98
+ of cases. On the JVM it only simplifies contiguos strings that are
99
+ know to be string instances at compile time.
100
+
101
+ ``` clojure
102
+ (str/concat " foo" 1 " bar" )
103
+ ; ; => "foo1bar"
104
+ ```
105
+
106
+ There some benchmark result with huge number of items to concatenate:
107
+
108
+ ``` clojure
109
+ ; ; => benchmarking: cljs.core/str
110
+ ; ; --> WARM: 100000
111
+ ; ; --> BENCH: 500000
112
+ ; ; --> TOTAL: 197.82ms
113
+ ; ; --> MEAN: 395.64ns
114
+ ; ; => benchmarking: cuerdas.core/concat
115
+ ; ; --> WARM: 100000
116
+ ; ; --> BENCH: 500000
117
+ ; ; --> TOTAL: 20.31ms
118
+ ; ; --> MEAN: 40.63ns
119
+ ```
90
120
91
121
### istr
92
122
93
123
String interpolation macro. Enables easy string formating allowing
94
- symbol substitutions and simple expression evaluation.
95
- At the moment not compatible with self-host ClojureScript.
124
+ symbol substitutions and simple expression evaluation. Very similar to
125
+ the ES6 template strings. At the moment not compatible with self-host
126
+ ClojureScript.
96
127
97
128
``` clojure
98
129
(def value 30 )
@@ -113,6 +144,35 @@ that will be concatenated on the final return value:
113
144
; ; => "the value is 30"
114
145
```
115
146
147
+ This macro ends using the fast string concatenation thanks to ` concat `
148
+ macro.
149
+
150
+ ### ffmt
151
+
152
+ Another string formating, simplier alternative to the ` istr ` macro.
153
+
154
+ It works with two basic forms: sequencial and indexed. Let seen an
155
+ example:
156
+
157
+
158
+ ``` clojure
159
+ (str/ffmt \"url(% )\" my-url) ; sequential
160
+ (str/ffmt \"url(%1 )\" my-url) ; indexed
161
+ ```
162
+
163
+ If you need the ` % ` character, just duplicate it:
164
+
165
+ ``` clojure
166
+ (str/fmt " %1%%" 1 )
167
+ ; ; => "1%"
168
+
169
+ (str/fmt " %%%" 1 )
170
+ ; ; => "%1"
171
+ ```
172
+
173
+ This macro ends using the fast string concatenation thanks to ` concat `
174
+ macro.
175
+
116
176
### alnum?
117
177
118
178
Checks if a string contains only alphanumeric characters.
@@ -128,7 +188,6 @@ Checks if a string contains only alphanumeric characters.
128
188
; ; => true
129
189
```
130
190
131
-
132
191
### alpha?
133
192
134
193
Checks if a string contains only alpha characters.
@@ -368,7 +427,9 @@ And you can access to indexed positions of an vector using `$0`, `$1`, `$N` synt
368
427
; ; => "hello yen"
369
428
```
370
429
371
- You can use ` str/fmt ` as shorter alias to ` str/format ` function.
430
+ You can use ` str/fmt ` as shorter alias to ` str/format ` function. This
431
+ performs the formatting at runtime, so consider using the ` istr ` or
432
+ ` ffmt ` macros if you can, because they will have much lower overhead.
372
433
373
434
374
435
### human
@@ -1074,14 +1135,16 @@ expression that matches a single word (defaults to `[a-zA-Z0-9_-]+`).
1074
1135
_ cuerdas_ has targeted some parts of implementation for Clojure and
1075
1136
ClojureScript using Reader Conditionals.
1076
1137
1077
- .Run tests in the Clojure environment.
1138
+ Run tests in the Clojure environment:
1139
+
1078
1140
```
1079
- $ clj -A :dev ./tools.clj test
1141
+ $ clojure -M :dev: test
1080
1142
```
1081
1143
1082
- .Run tests in the ClojureScript environment.
1144
+ Run tests in the ClojureScript environment:
1145
+
1083
1146
```
1084
- $ clj -A :dev ./tools.clj test-cljs
1147
+ $ clojure -M :dev ./tools.clj test <once|watch>
1085
1148
```
1086
1149
1087
1150
@@ -1100,7 +1163,7 @@ restrictions for contributions.
1100
1163
_ cuerdas_ is licensed under BSD (2-Clause) license:
1101
1164
1102
1165
```
1103
- Copyright (c) 2015-2016 Andrey Antukh <[email protected] >
1166
+ Copyright (c) 2015-Now Andrey Antukh <[email protected] >
1104
1167
1105
1168
All rights reserved.
1106
1169
@@ -1124,4 +1187,4 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1124
1187
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1125
1188
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1126
1189
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1127
- ```
1190
+ ```
0 commit comments