@@ -186,11 +186,7 @@ array[:] == array
186186 </tr>
187187</table >
188188
189- ### all()
190-
191- ```
192- all(array, predicate)
193- ```
189+ ### all(array, predicate)
194190
195191Returns ** true** if all elements satisfies the [ predicate] ( #predicate ) .
196192If the array is empty, returns ** true** .
@@ -199,12 +195,12 @@ If the array is empty, returns **true**.
199195all (Tweets, {.Size < 280 })
200196```
201197
202- ### ` any(array, predicate) `
198+ ### any(array, predicate)
203199
204200Returns ** true** if any elements satisfies the [ predicate] ( #predicate ) .
205201If the array is empty, returns ** false** .
206202
207- ### ` one(array, predicate) `
203+ ### one(array, predicate)
208204
209205Returns ** true** if _ exactly one_ element satisfies the [ predicate] ( #predicate ) .
210206If the array is empty, returns ** false** .
@@ -213,21 +209,21 @@ If the array is empty, returns **false**.
213209one(Participants, {.Winner})
214210```
215211
216- ### ` none(array, predicate) `
212+ ### none(array, predicate)
217213
218214Returns ** true** if _ all elements does not_ satisfy the [ predicate] ( #predicate ) .
219215If the array is empty, returns ** true** .
220216
221- ### ` map(array, predicate) `
217+ ### map(array, predicate)
222218
223219Returns new array by applying the [ predicate] ( #predicate ) to each element of
224220the array.
225221
226- ### ` filter(array, predicate) `
222+ ### filter(array, predicate)
227223
228224Returns new array by filtering elements of the array by [ predicate] ( #predicate ) .
229225
230- ### ` count(array, predicate) `
226+ ### count(array, predicate)
231227
232228Returns the number of elements what satisfies the [ predicate] ( #predicate ) .
233229Equivalent to:
@@ -236,23 +232,23 @@ Equivalent to:
236232len (filter (array, predicate))
237233```
238234
239- ### ` len(v) `
235+ ### len(v)
240236
241237Returns the length of an array, a map or a string.
242238
243- ### ` abs(v) `
239+ ### abs(v)
244240
245241Returns the absolute value of a number.
246242
247- ### ` int(v) `
243+ ### int(v)
248244
249245Returns the integer value of a number or a string.
250246
251247``` python
252248int (" 123" ) == 123
253249```
254250
255- ### ` float(v) `
251+ ### float(v)
256252
257253Returns the float value of a number or a string.
258254
0 commit comments