| 1443 | | A wrapper on C<sprintf>. A call to the scalar version C<$o.fmt($format)> |
| 1444 | | returns the result of C<sprintf($format, $o)>. A call to the array version |
| 1445 | | C<@a.fmt($format, $sep)> returns the result of C<join $sep, map { |
| 1446 | | sprintf($format, $_) }, @a>. A call to the hash version C<%h.fmt($format, |
| 1447 | | $sep)> returns the result of C<join $sep, map { sprintf($format, $_.key, |
| 1448 | | $_.value) }, %h.pairs>. A call to the pair versionC<%p.fmt($format)> returns |
| 1449 | | the result of C<sprintf($format, %h.key, |
| 1450 | | %h.value)>. |
| | 1443 | A set of wrappers around C<sprintf>. A call to the scalar version |
| | 1444 | C<$o.fmt($format)> returns the result of C<sprintf($format, $o)>. A call to |
| | 1445 | the array version C<@a.fmt($format, $sep)> returns the result of |
| | 1446 | C<join $sep, map { sprintf($format, $_) }, @a>. A call to the hash version |
| | 1447 | C<%h.fmt($format, $sep)> returns the result of |
| | 1448 | C<join $sep, map { sprintf($format, $_.key, $_.value) }, %h.pairs>. A call |
| | 1449 | to the pair versionC<$p.fmt($format)> returns the result of |
| | 1450 | C<sprintf($format, $p.key, $p.value)>. |