Re: Yenc encoder performance

2015-07-31 Thread Uri Guttman
On 07/31/2015 07:39 AM, David Emanuel da Costa Santiago wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello. Thanks for your reply. I remember that i did some performance tests and $string = $string ."something" had better performance than $string .= "something" which matched

Re: Yenc encoder performance

2015-07-31 Thread Jim Gibson
> On Jul 31, 2015, at 4:39 AM, David Emanuel da Costa Santiago > wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > > > Hello. > > > Thanks for your reply. > > > I remember that i did some performance tests and > > $string = $string ."something" > > had better performanc

Re: Yenc encoder performance

2015-07-31 Thread Andrew Solomon
That makes me wonder - what version of Perl are you using and on which OS? Here's what I get: $ perl -v This is perl 5, version 18, subversion 2 (v5.18.2) built for darwin-thread-multi-2level (with 2 registered patches, see perl -V for more detail) On Fri, Jul 31, 2015 at 12:39 PM, David Ema

Re: Yenc encoder performance

2015-07-31 Thread David Emanuel da Costa Santiago
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello. Thanks for your reply. I remember that i did some performance tests and $string = $string ."something" had better performance than $string .= "something" which matched the results of (link to stack overflow) http://stackoverflow.co

Re: Perl hash

2015-07-31 Thread bikram behera
Thanks Shlomi. On Fri, Jul 31, 2015 at 3:36 PM, Shlomi Fish wrote: > On Fri, 31 Jul 2015 09:08:06 +0530 > bikram behera wrote: > > > Hi Team, > > > > Please send me hash uses and concept > > > > Please see http://perl-begin.org/topics/hashes/ and especially "The Hash > Cookbook" link. > > Reg

Re: Perl hash

2015-07-31 Thread Shlomi Fish
On Fri, 31 Jul 2015 09:08:06 +0530 bikram behera wrote: > Hi Team, > > Please send me hash uses and concept > Please see http://perl-begin.org/topics/hashes/ and especially "The Hash Cookbook" link. Regards, Shlomi Fish > > Thanks, > Bikram -- -

Re: Yenc encoder performance

2015-07-31 Thread Shlomi Fish
Dear David, On Fri, 31 Jul 2015 02:10:49 + (UTC) David Araujo Souza wrote: > Hi Shiome.I'm the very, very beginner in Perl. In moment i can't help you. > I'm iniciate study in Perl on this week. > Sorry. > First of all, it’s "Shlomi" - not "Shiome". Secondly, I wasn't writing a message t

Re: Perl hash

2015-07-31 Thread Andrew Solomon
One other thing - if you're familiar with other programming languages you may have come across the idea of hash with a different name such as 'associative array', 'dictionary', 'map' or 'symbol table' https://en.wikipedia.org/wiki/Associative_array Andrew On Fri, Jul 31, 2015 at 10:31 AM, Martin

Re: Perl hash

2015-07-31 Thread Martin Barth
and hashes are not sorted, like lists are. Martin Am 31.07.2015 um 08:28 schrieb Uday Vernekar: > Hashes are complex list data, like arrays except they link a key to a > value. > Hashes can be used for counting, uniqueness, searching, and dispatch and > lot more than just mapping from one thing t