File tree Expand file tree Collapse file tree 1 file changed +23
-5
lines changed Expand file tree Collapse file tree 1 file changed +23
-5
lines changed Original file line number Diff line number Diff line change 1
1
PipedAssignment
2
2
---------------
3
+
4
+
5
+
6
+
3
7
### Synopsis
4
8
Piped Assignment Transpiler
5
9
10
+
11
+
6
12
---
13
+
14
+
7
15
### Description
8
16
9
17
Enables Piped Assignment (``` |=| ``` ).
10
18
11
19
Piped Assignment allows for an expression to be reassigned based off of the pipeline input.
12
20
21
+
22
+
13
23
---
24
+
25
+
14
26
### Examples
15
27
#### EXAMPLE 1
16
28
``` PowerShell
@@ -32,24 +44,30 @@ $Collection = $Collection | Where-Object Name -match $pattern
32
44
$Collection = $Collection |
33
45
Where-Object Name -match $pattern |
34
46
Select-Object -ExpandProperty Name
47
+
48
+
35
49
---
50
+
51
+
36
52
### Parameters
37
53
#### ** PipelineAst**
38
54
39
- > ** Type** : ``` [PipelineAst] ```
40
55
41
- > ** Required** : true
42
56
43
- > ** Position** : 1
44
57
45
- > ** PipelineInput** : true (ByValue)
58
+ | Type | Required| Position| PipelineInput |
59
+ | ---------------| --------| --------| --------------|
60
+ | ` [PipelineAst] ` | true | 1 | true (ByValue)|
61
+
62
+
46
63
47
64
48
65
49
66
---
67
+
68
+
50
69
### Syntax
51
70
``` PowerShell
52
71
PipedAssignment [-PipelineAst] <PipelineAst> [<CommonParameters>]
53
72
```
54
- ---
55
73
You can’t perform that action at this time.
0 commit comments