File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -223,10 +223,10 @@ containers are equivalent:
223
223
224
224
Defined as:
225
225
226
- method note(Mu: -->Bool:D);
227
- multi sub note( --> Bool:D);
228
- multi sub note(Str:D $note --> Bool:D);
229
- multi sub note(**@args --> Bool:D);
226
+ method note(Mu: -->Bool:D)
227
+ multi sub note( --> Bool:D)
228
+ multi sub note(Str:D $note --> Bool:D)
229
+ multi sub note(**@args --> Bool:D)
230
230
231
231
Like L « C < say > |/routine/say» , except prints output to L « C < $*ERR > |/language/variables#index-entry-%24%2AERR» handle (STDERR).
232
232
If no arguments are given to subroutine forms, will use string C < "Noted" > .
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ slurp the file in its entirety when this method is called.
23
23
24
24
Defined as:
25
25
26
- method get(IO::Handle:D: --> Str:D);
27
- multi sub get (IO::Handle $fh = $*ARGFILES --> Str:D);
26
+ method get(IO::Handle:D: --> Str:D)
27
+ multi sub get (IO::Handle $fh = $*ARGFILES --> Str:D)
28
28
29
29
Reads a single line of input from the handle, removing the trailing newline
30
30
characters (as set by L « C < .nl-in > |/routine/nl-in» )
@@ -47,8 +47,8 @@ is given.
47
47
48
48
Defined as:
49
49
50
- method getc(IO::Handle:D: --> Str:D);
51
- multi sub getc (IO::Handle $fh = $*ARGFILES --> Str:D);
50
+ method getc(IO::Handle:D: --> Str:D)
51
+ multi sub getc (IO::Handle $fh = $*ARGFILES --> Str:D)
52
52
53
53
Reads a single character from the input stream. The subroutine form defaults
54
54
to L « C < $*ARGFILES > |/language/variables#index-entry-%24%2AARGFILES» if no handle
You can’t perform that action at this time.
0 commit comments