🦋 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.
00:02 csrabak joined 00:18 pecastro left 00:33 HarmtH left 00:58 dataangel joined 01:26 kvw_5 joined 01:29 kvw_5_ left 01:41 csrabak left 02:41 greppable6 left, quotable6 left, linkable6 left, committable6 left, evalable6 left, coverable6 left, shareable6 left, nativecallable6 left, bloatable6 left, squashable6 left, sourceable6 left, unicodable6 left 02:42 linkable6 joined, statisfiable6 joined, greppable6 joined, sourceable6 joined, evalable6 joined, nativecallable6 joined, unicodable6 joined 02:43 squashable6 joined, notable6 joined, shareable6 joined, bisectable6 joined, benchable6 joined 02:44 bloatable6 joined, quotable6 joined, tellable6 joined, committable6 joined, coverable6 joined 02:45 releasable6 joined 02:47 __jrjsmrtn__ left 02:48 __jrjsmrtn__ joined 03:00 Doc_Holliwood joined, Doc_Holliwould left 03:07 guifa2 joined, guifa2 left 03:34 Doc_Holliwood left 03:44 rindolf joined 03:57 tejr left 04:02 tejr joined, neshpion left 04:03 neshpion joined 04:32 neshpion left 04:36 andinus left
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
04:56 tejr left 04:57 tejr joined 05:28 wamba joined 06:01 parabolize left 06:18 Doc_Holliwood joined 06:29 xinming_ left 06:30 xinming_ joined 06:52 Doc_Holliwood left 07:01 Xliff left
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
07:20 linkable6 left 07:21 linkable6 joined 07:48 kurahaupo left 07:49 squashable6 left 07:50 squashable6 joined 07:56 kurahaupo joined 07:57 Kaiepi left 07:59 domidumont joined, wamba left 08:01 squashable6 left 08:02 squashable6 joined 08:06 Kaiepi joined 08:07 Doc_Holliwood joined 08:18 Sgeo left 08:20 wamba joined 08:25 Black_Ribbon left 08:52 linkable6 left 08:54 linkable6 joined 09:01 pecastro joined 09:02 xinming_ left 09:18 PimDaniel joined
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
09:21 sena_kun joined
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
09:37 PimDaniel left 09:50 wamba left 09:58 frost-lab joined
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
10:27 linkable6 left 10:28 linkable6 joined
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
10:37 linkable6 left, linkable6 joined 10:38 wamba joined
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
10:46 linkable6 left 10:47 linkable6 joined 10:48 aluaces left, aluaces joined
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
11:11 linkable6 left
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
11:12 sno left 11:13 linkable6 joined
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
11:24 linkable6 left 11:26 linkable6 joined
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
11:31 linkable6 left 11:33 linkable6 joined
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
11:34 linkable6 left 11:35 linkable6 joined
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
11:36 linkable6 left 11:37 linkable6 joined
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
11:42 linkable6 left 11:43 linkable6 joined 11:46 aborazmeh joined 11:50 sno joined 11:51 PimDaniel joined
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
11:54 linkable6 left
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. :(
11:57 linkable6 joined 12:01 PimDaniel left
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
12:06 linkable6 left 12:07 linkable6 joined, PimDaniel joined
PimDaniel hum 12:07
12:07 PimDaniel left
lizmat PimDaniel: looking at that code example, it should 12:07
tellable6 lizmat, I'll pass your message to PimDaniel
12:09 Kaiepi left 12:10 Kaiepi joined 12:17 brown121407 left 12:18 brown121407 joined 12:43 |oLa| left 12:45 domidumont left 12:46 |oLa| joined
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
12:47 linkable6 left 12:49 linkable6 joined 12:55 ggoebel left
Geth doc/finanalyst-patch-1: 148b0061ac | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/numerics.pod6
Update numerics.pod6
13:04
13:23 aborazmeh left 13:30 mowcat joined 13:36 frost-lab left 13:37 b2gills left, b2gills joined 13:41 |oLa| left 13:56 squashable6 left 13:57 squashable6 joined 13:58 HarmtH joined 14:15 domidumont joined 14:19 domidumont left
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_
14:39 codesect` joined 14:41 codesections left
Geth ecosystem: a124b4c21d | Altai-man++ (committed using GitHub Web editor) | META.list
Remove modules uploaded to zef ecosystem
14:42
14:53 parabolize joined 14:55 simcop2387 left 15:00 mowcat left 15:08 aborazmeh joined 15:09 simcop2387 joined, simcop2387 left, simcop2387 joined 15:52 |oLa| joined 16:52 evalable6 left, linkable6 left, oneeggeach joined 16:54 evalable6 joined 16:55 linkable6 joined 17:09 domidumont joined, aborazmeh left 17:23 xinming joined 17:28 Sgeo joined 17:29 wamba left 17:43 domidumont left 18:20 wamba joined 18:51 mowcat joined
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
18:56 mowcat left 18:59 mowcat joined
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
20:15 berber44 joined 20:25 neshpion joined 20:35 berber44 left
[Coke] . 20:39
codesect` ‽ 20:40
20:42 oneeggea_ joined 20:44 aborazmeh joined 20:45 oneeggeach left 20:48 codesect` left 20:54 wamba left 20:55 oneeggea_ left, oneeggeach joined 21:00 oneeggeach left 21:06 oneeggeach joined 21:10 HarmtH left 21:17 wamba joined 21:19 oneeggeach left, oneeggeach joined, oneeggeach left, oneeggeach joined 21:20 oneeggeach left, oneeggeach joined, oneeggeach left, oneeggeach joined, oneeggeach left, oneeggeach joined 21:21 oneeggeach left, oneeggeach joined, oneeggeach left, oneeggeach joined, oneeggeach left 21:22 oneeggeach joined, oneeggeach left, oneeggeach joined, oneeggeach left, oneeggeach joined, oneeggeach left 21:23 oneeggeach joined, oneeggeach left, oneeggeach joined, oneeggeach left 21:26 oneeggeach joined 21:31 oneeggeach left 21:46 grayrider joined 21:54 codesections joined 21:55 oneeggeach joined 21:59 oneeggeach left 22:12 oneeggeach joined 22:17 oneeggeach left 22:19 rindolf left 22:33 wamba left 22:40 aborazmeh left 23:09 Black_Ribbon joined 23:34 Doc_Holliwood left, Doc_Holliwould joined 23:37 pecastro left