Re: combine hashes

2015-11-07 Thread Moritz Lenz
On 11/07/2015 10:17 AM, Marc Chantreux wrote: > hello Moritz, > > On Sat, Nov 07, 2015 at 08:17:21AM +0100, Moritz Lenz wrote: >> my %x = < login jdoe first john last doe >; >> my %y = flat (:enable, %x< login first >:p); > > i tried :p but the thing is i was searching for something straight as

Re: combine hashes

2015-11-07 Thread Marc Chantreux
hello, > Putting the parens around it force it not be a named argument. ok .. to make sure i understand: if flat had a :enable named parameter, the way to use it to get {:enable{True}, :ok } with the named parameter to False, would it be my %x = :ok; flat ( enable => True, %x )

Re: combine hashes

2015-11-07 Thread Marc Chantreux
that one is crap too. again: i'm sorry On Sat, Nov 07, 2015 at 10:13:17AM +0100, Marc Chantreux wrote: > hello Moritz, > > On Sat, Nov 07, 2015 at 08:17:21AM +0100, Moritz Lenz wrote: > > my %x = < login jdoe first john last doe >; > > my %y = flat (:enable, %x< login first >:p); > > i tried

Re: combine hashes

2015-11-07 Thread Marc Chantreux
hello Moritz, On Sat, Nov 07, 2015 at 08:17:21AM +0100, Moritz Lenz wrote: > my %x = < login jdoe first john last doe >; > my %y = flat (:enable, %x< login first >:p); i tried :p but the thing is i was searching for something straight as the perl5 my %y = (%x, qw( enable 1 )); si i

Adding doc on the fly during --doc

2015-11-07 Thread Kamil Kułaga
Hi, I know design allows to alter pod building during DOC INIT and DOC BEGIN phases I'm curious is it possible display undocumented things as it had doc? I would find it useful to display all public stuff from class as part of doc. -- Regards Kamil Kułaga