Process.this - multiple declarations

Function Process.this

Creates a new process (and spawns it).

Prototype

ref this(
  string[] args,
  std.stdio.File upstream
);

Parameters

NameDescription
args args for the process
upstream file object used as stdin for the process

Function Process.this

Creates a new process (and spawns it)

Prototype

ref this(
  string[] args
);

Parameters

NameDescription
args args for the process