»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or rakudo:, or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_logs/perl6 | UTF-8 is our friend!
Set by moritz on 22 December 2015.
ksn00b How is it possible to use enum within 'given'/'when' scope? 00:01
ksn00b This is my code: pastebin.com/QKXKdJay 00:04
MasterDuke tbrowder: something like this perhaps? `for $pod -> $_ is rw { $_ = pod2text($_) }; my $string = $pod.join("\n\n");` 00:24
tbrowder thanks, MasterDuke, I'll try that! 00:43
Zoffix .tel ksn00b yes, `when` can smartmatch one an Enum. Your issue was you used commas inside the `<...>`. The angle brackets already separate on space; no need for commas. Also, enums can start at values other than 0. Also, `when` can be used without a `give`. It smartmatches against the topic (the $_ variable). gist.github.com/zoffixznet/1fe5397...0785b0dd87 01:01
.tell ksn00b yes, `when` can smartmatch one an Enum. Your issue was you used commas inside the `<...>`. The angle brackets already separate on space; no need for commas. Also, enums can start at values other than 0. Also, `when` can be used without a `give`. It smartmatches against the topic (the $_ variable). gist.github.com/zoffixznet/1fe5397...0785b0dd87
yoleaux Zoffix: I'll pass your message to ksn00b.
zengargoyle gist.github.com/zengargoyle/5a14f0...0e9b85a22a 01:36
zengargoyle if somebody could tell me whether this is a bug or just some other misunderstanding i would much appreciate it. :) 01:36
ksn00b Zoffix: ah.. That was my mistake, thanks. 01:44
yoleaux 01:01Z <Zoffix> ksn00b: yes, `when` can smartmatch one an Enum. Your issue was you used commas inside the `<...>`. The angle brackets already separate on space; no need for commas. Also, enums can start at values other than 0. Also, `when` can be used without a `give`. It smartmatches against the topic (the $_ variable). gist.github.com/zoffixznet/1fe5397...0785b0dd87
timotimo zengargoyle: not only does the one with the whatever star match "only the last", it'll match the last as many times as there are matchers 01:48
timotimo looks like it's not closing over the $r as much as you were expecting, and i'm not sure what amount of closing is to be expected here 01:48
more likely the regex compilation isn't closing over the $r as much as you're expecting it to 01:50
i should really go to sleep before the damn birds start yelling at me again
zengargoyle so the additional -> code is somehow makes $r more closed. why doesn't this affect the eq version as well or is it just some regex thing. hrm... 01:53
zengargoyle heh, maybe it's just a fluke that the eq version works in the first place. :) 02:00
tbrowder all: thanks to kurahaupo's word description and MasterDuke's hint, I think a long-standing bug in Pod::To::Text may be fixed. it now successfully extracts pod from S26-documention.pod without error. I will submit PR tomorrow. 02:19
committable6 tbrowder, gist.github.com/0ae5466dc9480c3326...6b176d29e1 02:20
tbrowder going to bed a happy camper... 02:21
dwarring ksn00b: how about starting the enum at zero 02:42
enum MyEnum <zero one two three>
BenGoldberg Deliberately misnaming enum constants is a hilarious way to confuse your readers. 02:46
dwarring ksn00b: gist.github.com/dwarring/84be2b06d...90f429512c
BenGoldberg: yup 02:47
BenGoldberg m: enum MyEnum <zero one two three>; say one;
camelia one
dwarring m: enum MyEnum <zero one two three>.pick; say one; 02:48
camelia one
BenGoldberg m: enum <one two three four five>; say two+three;
camelia 3
BenGoldberg m: enum <one two three four five>; say two+three==four; 02:49
camelia True
dwarring m: enum MyEnum <zero one two three>.pick(*); say one; 02:50
camelia one
dwarring m: enum MyEnum <zero one two three>.pick(*); say two+three==four;
camelia 5===SORRY!5=== Error while compiling <tmp>
Undeclared routine:
four used at line 1
dwarring m: enum MyEnum <zero one two three four>.pick(*); say two+three==four;
camelia False
BenGoldberg m: enum M <one two three four five>; say M.pick; 02:51
camelia four
dwarring m: enum MyEnum <zero one two three four>.pick(*); say two+two==four;
camelia True
dwarring m: enum MyEnum <zero one two three four>.pick(*); say two+two==four;
camelia True
BenGoldberg m: enum M <one two three four five>; say M.pick(*);
camelia (three four one five two)
Geth doc: a3e0260565 | (Gabor Szabo)++ | 2 files
run accepting :err as well; How to fetch error from the resulting Proc object
04:18
travis-ci Doc build errored. Gabor Szabo 'run accepting :err as well; How to fetch error from the resulting Proc object' 04:34
travis-ci.org/perl6/doc/builds/237377477 github.com/perl6/doc/compare/856e8...e026056583
Geth Inline-Perl5: 693e576416 | (Stefan Seifert)++ | 2 files
Do not import pragmas when loading Perl 5 modules.

Lower case module names are reserved for pragmas. It doesn't make sense to import them and the names may interfere with Perl 6' CORE subs. Fixes GH #92
07:17
vimal2012 p6: say 3 09:23
camelia 3
AlexDaniel greppable6: all\: 09:30
greppable6 AlexDaniel, gist.github.com/35e1df904a40be02dc...dae0487539
AlexDaniel oh no wait, wrong bot…
quotable6: ‘all:’
quotable6 AlexDaniel, gist.github.com/2ca292ff95a5145277...d8fe74e631 09:31
AlexDaniel quotable6: ^ ‘all:’ 09:32
quotable6 AlexDaniel, gist.github.com/0f0ae62506e02599b6...88336ab3c7
AlexDaniel okay… so people do this too often 09:33
Geth doc: dca7b697d1 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Proc.pod6
Fix errors in example code
10:05
doc: 9c1951e7c9 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Proc.pod6
Remove proc runs from example testing
10:06
travis-ci Doc build errored. Zoffix Znet 'Remove proc runs from example testing' 10:24
travis-ci.org/perl6/doc/builds/237453972 github.com/perl6/doc/compare/dca7b...1951e7c95b
ne_robot ugexe: when I try to do the request to spys.ru/proxies with Net::HTTP::GET (pastebin.com/TMWcM99e), the website gives me 503; if I do the same thing with Python, it works - pastebin.com/xb9CnLT3 10:25
ugexe: what am I doing wrong with Perl6? 10:26
travis-ci Doc build passed. Zoffix Znet 'Fix errors in example code' 10:42
travis-ci.org/perl6/doc/builds/237453698 github.com/perl6/doc/compare/a3e02...a7b697d1bf
travis-ci Doc build passed. Zoffix Znet 'Remove proc runs from example testing' 11:05
travis-ci.org/perl6/doc/builds/237453972 github.com/perl6/doc/compare/dca7b...1951e7c95b
Zoffix How to get symbols the module exports via EXPORT sub? 13:05
m: require Test; dd ::('UNIT::Test::EXPORT::DEFAULT::&is') 13:06
camelia Sub is = sub is (;; Mu | is raw) { #`(Sub|75608552) ... }
Zoffix $ perl6 -Irepo/lib -e 'require Benchy; dd ::("UNIT::Benchy::EXPORT::DEFAULT::&b")'
Failure.new(exception => X::NoSuchSymbol.new(symbol => "UNIT::Benchy::EXPORT::DEFAULT::\&b"), backtrace => Backtrace.new)
Seems the above way only works for routines marked with `is export`
ufobat is tehre a better way for sub a($a where {$a ~~ Int|Callable}) { ... } 13:08
Zoffix ufobat: $a where Int|Callable 13:09
`where` smartmatches already
also: multi a (Int $a) {}; multi a (&a) {} 13:10
Geth doc: 6a49dcccca | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Language/modules.pod6
Remove note about Rakudo and EXPORT

AFAIK current way is the it's meant to work and the note implies it's a bug looking to be fixed.
13:12
ufobat thanks! 13:16
Zoffix ufobat: now you help me :D
ufobat oh my.. how? :D 13:17
Zoffix ufobat: answer my question about require above
ufobat i am afraid i cant :/ 13:19
Zoffix :)
Zoffix Well, don't know how to do above, but solved what I was /actually/ trying to do with this concoction: (try require ::("IRC::Client")) === Nil and (qx{git clone github.com/zoffixznet/perl6-IRC-Client/ repo}, (require ::("IRC::Client"))); my \IRC = ::("IRC::Client"); dd IRC.new 13:28
loading a module, with cloning a repo if the module fails to load, and loading from that 13:29
araraloren m: dd UNIT::.keys 13:35
camelia ("\$=pod", "\$_", "\$/", "!UNIT_MARKER", "\$=finish", "EXPORT", "\$!", "::?PACKAGE", "GLOBALish", "\$¢", "\$?PACKAGE").Seq
araraloren m: require Test; dd UNIT::.keys
camelia ("\$=pod", "\$_", "\$/", "!UNIT_MARKER", "\$=finish", "EXPORT", "\$!", "::?PACKAGE", "GLOBALish", "\%REQUIRE_SYMBOLS", "Test", "\$¢", "\$?PACKAGE").Seq
araraloren m: require Test; dd UNIT::.keys; dd UNIT::{"\$?PACKAGE"}; 13:41
camelia ("\$=pod", "\$_", "\$/", "!UNIT_MARKER", "\$=finish", "EXPORT", "\$!", "::?PACKAGE", "GLOBALish", "\%REQUIRE_SYMBOLS", "Test", "\$¢", "\$?PACKAGE").Seq
GLOBAL
tbrowder AlexDaniel: excuse the 'all', please, wasn't aware of consequences 14:24
[Coke] (specify perl 6 fund); note that if you do that, it'll probably go to jnthn's fund, not the general purpose fund which was used to fund zoffix's own grant. 14:40
yoleaux 29 May 2017 22:37Z <Zoffix> [Coke]: My final report for the IO grant is now available. I believe I've completed all of the grant's goals. Let me know what the next steps are: blogs.perl.org/users/zoffix_znet/20...grant.html
29 May 2017 22:38Z <Zoffix> [Coke]: the Markdown format for the report is available in github.com/zoffixznet/IOwesomeness...ay-2017.md
Geth doc: 1dc0eff496 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/IO.pod6
Close pipes in the example
14:45
doc: a5d0383884 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/IO.pod6
Fix typos; Fixes #1349
14:46
Geth doc: 8a3d6d4bda | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/IO.pod6
Remove duplicate word
15:17
Geth doc: 10502173fe | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/IO.pod6
Fix up &spurt example

  - Uncomment commented code
  - Fixup outputs
  - Don't CATCH to demonstrate Failure; this isn't how Failure mechanism is meant to be used
15:25
[Coke] not ok 189 - doc/Type/Thread.pod6 had duplicate words: the the 15:50
(looks like the other 50+ failures in my experiment there are all false positives. 15:51
travis-ci Doc build errored. Zoffix Znet 'Remove duplicate word' 15:57
travis-ci.org/perl6/doc/builds/237559186 github.com/perl6/doc/compare/a5d03...3d6d4bda50
Geth doc: fca615c5de | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Thread.pod6
Fix duplicate word
15:59
[Coke] ooh, I didn't realize it was on a line boundary. nice. 16:10
travis-ci Doc build errored. Zoffix Znet 'Fix up &spurt example 16:16
travis-ci.org/perl6/doc/builds/237562447 github.com/perl6/doc/compare/8a3d6...502173fe0c
AlexDaniel tbrowder: well, according to quotable6, people do that very often 16:33
so IMO committable6 is wrong and people are right :) 16:34
tony-o ingy: Slang::SQL works still - need to figure out some deprecated use of %*LANG 16:41
travis-ci Doc build passed. Zoffix Znet 'Fix duplicate word' 16:41
travis-ci.org/perl6/doc/builds/237576913 github.com/perl6/doc/compare/10502...a615c5de6b
tony-o but that shouldn't affect syntax/use 16:41
AlexDaniel m: say #`X 17:21
camelia 5===SORRY!5===
Argument to "say" seems to be malformed
at <tmp>:1
------> 3say7⏏5 #`X
Other potential difficulties:
Unsupported use of bare "say"; in Perl 6 please use .say if you meant to call it as a method on $_, or use an expl…
AlexDaniel m: #`X 17:22
camelia ( no output )
AlexDaniel what's that :o
geekosaur I suspect it's a comment extending to the next X 17:29
AlexDaniel ummm 17:30
m: #`{{{
camelia 5===SORRY!5=== Error while compiling <tmp>
Couldn't find terminator }}} (corresponding {{{ was at line 1)
at <tmp>:1
------> 3#`{{{7⏏5<EOL>
expecting any of:
}}}
AlexDaniel m: say #`X hello X 42
camelia 5===SORRY!5===
Argument to "say" seems to be malformed
at <tmp>:1
------> 3say7⏏5 #`X hello X 42
Other potential difficulties:
Unsupported use of bare "say"; in Perl 6 please use .say if you meant to call it as a method on $_, or …
AlexDaniel no? 17:31
well, maybe, but? 17:32
AlexDaniel m: dd #`X 17:33
camelia block <unit>
AlexDaniel ah right, indeed, looks like a comment
AlexDaniel m: #`X hello␤ say 42 17:36
camelia 42
AlexDaniel ah-ha
it's parsed as a regular comment
okay
so you can do this 17:37
m: #`“ say 42 ” say 42
camelia 42
AlexDaniel but can't do that
m: #`" say 42 " say 42
camelia ( no output )
Geth doc: 95bd16012d | (Zoffix Znet)++ (committed using GitHub Web editor) | app.pl
Debitrot Mojolicious app

Fixes #1332
17:38
perlpilot debit-rot? ;-) 17:56
[Coke] debitrot13 17:58
Geth doc: 5ff5574e76 | (Jan-Olof Hendig)++ | doc/Language/subscripts.pod6
Adjusted some OUTPUT: messages

Since the document was written, error messages have changed and so has the format output by dd.
18:56
Geth doc: f4582a441d | (Jan-Olof Hendig)++ | doc/Language/variables.pod6
Touched up ^ twigil example

Closes #1353
20:29
raiph NativeCall question on SO with no comment/answer stackoverflow.com/questions/442664...all-struct 20:50
raiph bisectable: help 21:10
bisectable6 raiph, Like this: bisectable6: old=2015.12 new=HEAD exit 1 if (^∞).grep({ last })[5] // 0 == 4 # See wiki for more examples: github.com/perl6/whateverable/wiki/Bisectable
AlexDaniel is also ready to help 21:12
raiph bisectable6: 2016.02 use NativeCall; CArray[int]; say CArray[Pointer] 21:13
bisectable6 raiph, On both starting points (old=2015.12 new=5e33934) the exit code is 1 and the output is identical as well
raiph, gist.github.com/01237e5b4ae5d876e8...5935ca5c76
raiph commitable6: 2016.02 use NativeCall; CArray[int]; say CArray[Pointer]
committable6 raiph, ¦2016.02: «WARNINGS for /tmp/QbB0hy1ANM:␤Useless use of constant value CArray[int] in sink context (line 1)␤(Pointer])»
AlexDaniel bisectable6: use NativeCall; CArray[int]; say CArray[Pointer] 21:14
bisectable6 AlexDaniel, On both starting points (old=2015.12 new=5e33934) the exit code is 0 and the output is identical as well
AlexDaniel, Output on both points: «WARNINGS for /tmp/Ist4tcRZUR:␤Useless use of constant value CArray[int] in sink context (line 1)␤(Pointer])»
AlexDaniel bisectable6: old=2016.02 use NativeCall; CArray[int]; say CArray[Pointer] 21:14
bisectable6 AlexDaniel, On both starting points (old=2016.02 new=5e33934) the exit code is 0 and the output is identical as well
AlexDaniel, Output on both points: «WARNINGS for /tmp/k7WMB1qXOg:␤Useless use of constant value CArray[int] in sink context (line 1)␤(Pointer])»
raiph AlexDaniel: nice bot and nice bot docs too :) 21:15
AlexDaniel \o/
raiph: by the way 21:16
raiph use NativeCall; say CArray[Pointer] # .gist is screwed up and has been since at least 2015.12
m: use NativeCall; say CArray[Pointer] # .gist is screwed up and has been since at least 2015.12
camelia (Pointer])
AlexDaniel committable6: 2015.11 use NativeCall; CArray[int]; say CArray[Pointer]
committable6 AlexDaniel, ¦2015.11: «(TypedCArray[Pointer])»
AlexDaniel bisectable6: old=2015.11 use NativeCall; CArray[int]; say CArray[Pointer] 21:17
bisectable6 AlexDaniel, Bisecting by output (old=2015.11 new=5e33934) because on both starting points the exit code is 0
raiph er, since at least 2016.02 I mean
AlexDaniel nice bot just got stuck… 21:18
AlexDaniel slaps bisectable6
this feels like it is a change in rakudo, by the way 21:19
unless adding .close to the pipe in between breaks something (sometimes)
raiph bisectable6: old=2015.11 use NativeCall; exit +(CArray[Pointer].gist ne 'CArray[Pointer]') 21:20
AlexDaniel one second
AlexDaniel bisectable6: old=2015.11 use NativeCall; exit +(CArray[Pointer].gist ne 'CArray[Pointer]') 21:20
bisectable6 AlexDaniel, On both starting points (old=2015.11 new=5e33934) the exit code is 1 and the output is identical as well
AlexDaniel, Output on both points: «»
AlexDaniel bisectable6: old=2015.11 use NativeCall; CArray[int]; say CArray[Pointer]
bisectable6 AlexDaniel, Bisecting by output (old=2015.11 new=5e33934) because on both starting points the exit code is 0
AlexDaniel, bisect log: gist.github.com/9aa863ab0a2aa77102...cb8ccf6c05 21:21
AlexDaniel, (2015-12-01) github.com/rakudo/rakudo/commit/cd...e09d031b07
AlexDaniel c: cdc3fb041^,cdc3fb041 use NativeCall; CArray[int]; say CArray[Pointer]
committable6 AlexDaniel, ¦cdc3fb041^: «(TypedCArray[Pointer])» ¦cdc3fb0: «(CArray[Pointer])»
AlexDaniel wait, both are okay, no? 21:22
AlexDaniel bisectable6: old=cdc3fb041 use NativeCall; CArray[int]; say CArray[Pointer] 21:22
bisectable6 AlexDaniel, Bisecting by output (old=cdc3fb0 new=5e33934) because on both starting points the exit code is 0
AlexDaniel, bisect log: gist.github.com/41303c58170332075c...c48980bb59 21:23
AlexDaniel, (2015-12-01) github.com/rakudo/rakudo/commit/51...b9fbb01016
raiph bisectable6: old=2015.11 use NativeCall; exit +(CArray[Pointer].gist ne 'CArray[Pointer]') # AlexDaniel, is this correct usage?
AlexDaniel c: 518b46feb^,518b46feb use NativeCall; CArray[int]; say CArray[Pointer]
bisectable6 raiph, On both starting points (old=2015.11 new=5e33934) the exit code is 1 and the output is identical as well
raiph, Output on both points: «»
committable6 AlexDaniel, ¦518b46feb^: «(CArray[Pointer])» ¦518b46f: «(Pointer])»
AlexDaniel raiph: I'd say no. It will compare the output anyway if you just say it
raiph: something like this would be correct for ‘git bisect’ on command line 21:24
raiph gotchya
AlexDaniel but for bisectable it is too much thinking on your side :)
the reason it didn't work is because it should be “ne '(CArray[Pointer])'” I think (with parens) 21:25
c: cdc3fb041^,cdc3fb041,518b46feb^,518b46feb use NativeCall; CArray[int]; say CArray[Pointer]
committable6 AlexDaniel, ¦cdc3fb041^: «(TypedCArray[Pointer])» ¦cdc3fb0,518b46feb^: «(CArray[Pointer])» ¦518b46f: «(Pointer])»
AlexDaniel raiph: ↑ this is basically the whole history of that thing changing :)
raiph that's amazing
AlexDaniel (where sha^ is a parent of the commit) 21:26
raiph m: use NativeCall; say CArray[CPointer] 21:33
camelia 5===SORRY!5=== Error while compiling <tmp>
Undeclared name:
CPointer used at line 1. Did you mean 'Pointer'?
timotimo that got renamed a while back 21:52
timotimo but CArray is always of pointers to structs if they aren't of native nums or ints 21:52
raiph m: use NativeCall; put gist CArray[Pointer] # timotimo: this is the tangent I'm chasing right now 21:54
camelia (Pointer])
raiph note the missing `CArray[`
timotimo interesting 21:56
m: use NativeCall; put CArray[Pointer].^name; put CArray[Pointer].^long_name
camelia NativeCall::Types::CArray[NativeCall::Types::Pointer]
No such method 'long_name' for invocant of type 'Perl6::Metamodel::ClassHOW+{<anon>}+{<anon>}'
in block <unit> at <tmp> line 1
timotimo is it perhaps actually shortname?
m: use NativeCall; put CArray[Pointer].^shortname;
camelia Pointer]
timotimo right, that's b0rked
timotimo spits hot debug printfs 21:57
timotimo ah, interesting 21:59
in set_name it spits by :: and sets the shortname to be only the stuff after the last ::
that's in Naming.nqp
beginner how to create own data type in perl6? 22:07
AlexDaniel beginner: like a class? 22:15
raiph beginner: create a new class with whatever attributes and/or methods you want
timotimo beginner: what do you consider a "data type"?
raiph m: enum my-enum <a b c>; role my-role {}; class my-class {}; grammar my-grammar {}; # etc. 22:16
camelia ( no output )
AlexDaniel so everyone was quiet for 8 minutes, and then we all decided to reply in one second? :)
raiph heh 22:17
beginner timotimo : suppose a need a type that contains underscore and digits
MasterDuke or like the examples from the discussion from yesterday. subset My-Int of Int where ... . constant My-Array = Array of Int 22:18
raiph m: subset MyType of Str where / '_' / & / \d ** {2..Inf} / 22:19
camelia ( no output )
jnthn m: subset MyType of Str where /^ <[0..9_]>+ $/; my MyType $x = '123_456'
camelia ( no output )
jnthn m: subset MyType of Str where /^ <[0..9_]>+ $/; my MyType $x = '123_456!!!'
camelia Type check failed in assignment to $x; expected MyType but got Str ("123_456!!!")
in block <unit> at <tmp> line 1
jnthn Heh, I see raiph and I took the alternative interpretations of the problem. :) 22:20
beginner AlexDaniel : we have built in types like int for numbers ,str for characters. I need to create a type that is combination of number and symbols
raiph beginner: if a dynamically checked type is OK then I think creating a subset type as demo'd above is the natural solution 22:23
beginner thanks all...that helps 22:24
mscha m: sub foo(Int @bar = (1,2,3)) { say @bar }; foo; 22:41
camelia Type check failed in binding to parameter '@bar'; expected Positional[Int] but got List ($(1, 2, 3))
in sub foo at <tmp> line 1
in block <unit> at <tmp> line 1