🦋 Welcome to Raku! raku.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: colabti.org/irclogger/irclogger_log/raku
Set by ChanServ on 14 October 2019.
xinming_ SmokeMachine: I just saw Red changelog, there is table-name-wrpaper, Is that a snapshot of table name, so we can safely do something like `temp Model.^table-name = 'new-name'` ??? 04:47
Geth doc: b1325f2e32 | (JJ Merelo)++ | doc/Type/Seq.pod6
Updates Seq

Initially addressing #3808, but now also #3855
07:19
linkable6 Link: docs.raku.org/type/Seq
PimDaniel o\ 09:19
o/
o\/o
Is there a way to get current indice in a for loop deploying an array : for @thing -> $one { say $l.current_indice;} ? 09:21
PimDaniel Or should i use for 0 .. @thing.end {...} ? 09:21
I just wonder each time what permits the langage. 09:22
gfldex PimDaniel: Array can have holes. You need to iterate over .kv to cover those.
PimDaniel Thank you gfldex : thought .kv was for hashes. 09:23
I'll give a try of what you say... 09:24
m: my @myarray = <a b c d e f g>; for @myarray.kv -> $k,$v { say 'k: ', $k,' ,v: ', $v} 09:25
camelia k: 0 ,v: a
k: 1 ,v: b
k: 2 ,v: c
k: 3 ,v: d
k: 4 ,v: e
k: 5 ,v: f
k: 6 ,v: g
PimDaniel Ok thank's 09:26
gfldex m: sub spy(\v) { say v with v; v }; (my @sparce)[0,2,3] = 1,3,4; loop { last without spy @sparce[$++] } 09:29
camelia 1
gfldex PimDaniel: if you want to loop, loop is likely better the for. :)
PimDaniel why? 09:30
loop (my $i = 0;<end condition>; $i++) { ... } why should it be better that for @thing.kv -> $k,$v { .... } ??? 09:31
For what i'm currently doing : i need 1/ to deploy the array 2/ to get the current array indice. 09:33
gfldex It is easier the (human) reader to spot that you want to skip the buildin iteration. Assuming that's what you want to do. So for your case it's indeed fine to use .kv. 09:34
PimDaniel My array has not holes for sure.
Très bien merci gfldex :) . 09:35
Back later... 09:37
Geth doc: 559749d093 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/newline.pod6
See #3841

  \n link corrected
10:27
linkable6 Link: docs.raku.org/language/newline
Geth doc/finanalyst-patch-1: d712e18611 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/numerics.pod6
related to #3841

This is not an obvious mistake. From the link it seems to point at a different file. Since this is a judgment call, I'm flagging my correction for review.
10:36
doc: finanalyst++ created pull request #3856:
related to #3841
10:37
Geth doc: 459358d52a | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/operators.pod6
See #3841

missing _ (item assignment) link
10:45
linkable6 Link: docs.raku.org/language/operators
Geth doc/finanalyst-patch-2: 50524e6e8e | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/operators.pod6
Related #3841

Removing B<..> **inside** a X<> for $*COLLATION . The problem is that there is no specification for a corresponding `L<>` in another file. As the present, the link author has to know how the target will be rendered. So `B<>` could be rendered as `<b> ... </b>` or `<strong>...</strong>` in HTML. **BUT** if this were to be rendered in some other output format (pdf? epub? latex?), the link would fail. This has already happened in `Language/Operators`, where the link author did not include
So, I have removed B<> inside the X<>, and simplified the X<>, and corrected the link in Operators. If this has a knock-on effect in other documents, it will be picked up in `Collection` tests when the documentation files are re-rendered.
11:10
doc: finanalyst++ created pull request #3857:
Related #3841
Geth doc/finanalyst-patch-2-1: 2f8469506b | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Type/Any.pod6
See #3841 #3857

simplify the X<> for $*COLLATION
11:12
doc: finanalyst++ created pull request #3858:
See #3841 #3857
Geth doc: 2705542808 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/operators.pod6
See #3841

In item assignment, missing _
11:24
linkable6 Link: docs.raku.org/language/operators
Geth doc/finanalyst-patch-3: 4beefb9727 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/packages.pod6
see #3841

removed link altogether. Could not determine the intention of the link author. Judgement call, so requesting review.
11:30
doc: finanalyst++ created pull request #3859:
see #3841
Geth doc: f9694b405f | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/pragmas.pod6
See #3841

correct link to try-block
11:33
linkable6 Link: docs.raku.org/language/pragmas
Geth doc: 8484158f73 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/pragmas.pod6
see #3841

missing 'installed' in finding modules link
11:36
linkable6 Link: docs.raku.org/language/pragmas
Geth doc: aa26ec2c90 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/regexes.pod6
see #3841

Probable intent of author to point to Glossary.
11:42
linkable6 Link: docs.raku.org/language/regexes
PimDaniel \o 11:51
o/
m6locks_ helo
PimDaniel May the first method look at the first with a condition: suppose a list of point: 11:52
Geth doc: 2f737c2327 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/setbagmix.pod6
see #3841

  - Incomplete link (set equivalence)
  - no index item for 'object hash', so just point to content file (object hash)
11:53
linkable6 Link: docs.raku.org/language/setbagmix
PimDaniel my $first = @points.first( {.y == 30},:k); could this work? 11:54
class Point has $.x and $.y. 11:55
It does not seam to work. :(
Geth doc: 2290714607 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/structures.pod6
see #3841

  - composition operator, incomplete link
  - method assuming, wrong file
  - IO.Handle.lines routine, not method
12:05
linkable6 Link: docs.raku.org/language/structures 12:06
PimDaniel hum 12:07
lizmat PimDaniel: looking at that code example, it should 12:07
tellable6 lizmat, I'll pass your message to PimDaniel
Geth doc: d8024fd25b | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/traps.pod6
See #3841

  - infix || missing _
  - .contains, wrong document List->Cool
  - hyper >> edited header corrected.
  - non-string keys, wrong file (hash -> hashmap)
  - Match & Nil, previous section should have been in link.
  - .index method not routine
12:47
linkable6 Link: docs.raku.org/language/traps
Geth doc/finanalyst-patch-1: 148b0061ac | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/numerics.pod6
Update numerics.pod6
13:04
SmokeMachine .tell xinming_ no, that’s just a way to add “” around the table name… sorry, that problem wasn’t fixed yet… :( 14:32
tellable6 SmokeMachine, I'll pass your message to xinming_
Geth ecosystem: a124b4c21d | Altai-man++ (committed using GitHub Web editor) | META.list
Remove modules uploaded to zef ecosystem
14:42
tbrowder .seen jmerlo 18:52
tellable6 tbrowder, I haven't seen jmerlo around, did you mean jmerelo?
tbrowder yes
.seen jmerelo
tellable6 tbrowder, I saw jmerelo 2021-04-01T15:42:12Z in #raku: <jmerelo> ggoebel: actually, you have to set that up explicitly for every project
Geth Raku-Steering-Council/main: 30dfe15f6a | (Patrick Spek)++ | minutes/20210403.md
Add minutes for the RSC meeting on 2021-04-03
19:35
doc: tbrowder++ created pull request #3860:
Add description of three new DateTime methods
19:42
[Coke] . 20:39
codesect` 20:40