We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c3429f7 + 0aad735 commit d7cd5f8Copy full SHA for d7cd5f8
Transpilers/Syntax/README.md
@@ -22,6 +22,21 @@ This directory and it's subdirectories contain syntax changes that enable common
22
$Collection = $Collection | Where-Object Name -match $pattern
23
~~~
24
25
+## PipedAssignment Example 2
26
+
27
28
+~~~PowerShell
29
+ {
30
+ $Collection |=| Where-Object Name -match $pattern | Select-Object -ExpandProperty Name
31
+ } | .>PipeScript
32
33
+ # This will become
34
35
+ $Collection = $Collection |
36
+ Where-Object Name -match $pattern |
37
+ Select-Object -ExpandProperty Name
38
+~~~
39
40
## RegexLiteral Example 1
41
42
0 commit comments