We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$input is ancient PowerShell v1
In a scriptblock it contains every input to the scriptblock at that point in time
in the end block, $input contains every input
It is faster than accumulating input in the process block
Watch Out: $input can only be read once
The text was updated successfully, but these errors were encountered:
suspected use case in PsRunspace module
Sorry, something went wrong.
Implemented in Split-Thread only due to simplest direct replacement
Need to evaluate impact to see if it is worth rearchitecting any other functions to take advantage of the perf improvement
No branches or pull requests
$input is ancient PowerShell v1
In a scriptblock it contains every input to the scriptblock at that point in time
in the end block, $input contains every input
It is faster than accumulating input in the process block
Watch Out: $input can only be read once
The text was updated successfully, but these errors were encountered: