- Start Date: 2017-06-15
- RFC: https://github.com/rust-lang/rfcs/blob/master/text/2033-experimental-coroutines.md
- PR: rust-lang/rfcs#2033
- Issue: rust-lang/rust#43122
関連: RFC 2394
| GNU GENERAL PUBLIC LICENSE | |
| Version 2, June 1991 | |
| Copyright (C) 1989, 1991 Free Software Foundation, Inc. | |
| 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| Everyone is permitted to copy and distribute verbatim copies | |
| of this license document, but changing it is not allowed. | |
| Preamble |
関連: RFC 2394
| #!/bin/bash | |
| set -ue | |
| #set -x | |
| cd $(dirname $0) | |
| . environ.sh | |
| cd "$VIMREPODIR" | |
| [ "$CFLAGS" ] && export CFLAGS |
| # Load | |
| Split-Path $MyInvocation.MyCommand.Path -Parent | Push-Location | |
| Get-ChildItem poco_*.ps1 | %{. $_} | |
| Pop-Location | |
| function Select-Poco | |
| { | |
| Param | |
| ( | |
| [Object[]]$Property = $null, |
| /** | |
| * Hindley-Milner type inference | |
| * Ported to Groovy from Scala by Example Chapter 16 code. | |
| * (http://www.scala-lang.org/docu/files/ScalaByExample.pdf) | |
| * refered also | |
| * https://github.com/namin/spots/blob/master/hindleyMilner/typeInference.scala | |
| * Japanese page of 'Scala by Example': | |
| * http://www29.atwiki.jp/tmiya/pages/78.html | |
| */ | |
| import groovy.transform.* |
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| Function Invoke-ElevatedCommand { | |
| <# | |
| .DESCRIPTION | |
| Invokes the provided script block in a new elevated (Administrator) powershell process, | |
| while retaining access to the pipeline (pipe in and out). Please note, "Write-Host" output | |
| will be LOST - only the object pipeline and errors are handled. In general, prefer | |
| "Write-Output" over "Write-Host" unless UI output is the only possible use of the information. | |
| Also see Community Extensions "Invoke-Elevated"/"su" | |
| .EXAMPLE |