ext documentation
This commit is contained in:
parent
0f8f528fcb
commit
bc44865f5a
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -83,6 +83,22 @@ bB
|
||||||
sS
|
sS
|
||||||
dD
|
dD
|
||||||
eE
|
eE
|
||||||
|
|
||||||
|
$ list 1 2 3 | map echo
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
|
||||||
|
$ list 1 2 3 | map 'echo $ is a number'
|
||||||
|
1 is a number
|
||||||
|
2 is a number
|
||||||
|
3 is a number
|
||||||
|
|
||||||
|
$ list 1 2 3 4 | map 'echo \($,$\) is a point'
|
||||||
|
(1,1) is a point
|
||||||
|
(2,2) is a point
|
||||||
|
(3,3) is a point
|
||||||
|
(4,4) is a point
|
||||||
```
|
```
|
||||||
|
|
||||||
## *flat map*
|
## *flat map*
|
||||||
|
|
Loading…
Reference in a new issue