We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0271673 commit 3e7d20eCopy full SHA for 3e7d20e
docs/Language-Definition.md
@@ -8,7 +8,7 @@ syntaxes.
8
The package supports:
9
10
* **strings** - single and double quotes (e.g. `"hello"`, `'hello'`)
11
-* **numbers** - e.g. `103`, `2.5`
+* **numbers** - e.g. `103`, `2.5`, `.5'
12
* **arrays** - e.g. `[1, 2, 3]`
13
* **maps** - e.g. `{foo: "bar"}`
14
* **booleans** - `true` and `false`
@@ -155,6 +155,7 @@ user.Age > 30 ? "mature" : "immature"
155
* `one` (will return `true` if exactly ONE element satisfies the predicate)
156
* `filter` (filter array by the predicate)
157
* `map` (map all items with the closure)
158
+* `count` (returns number of elements what satisfies the predicate)
159
160
Example:
161
0 commit comments