summaryrefslogtreecommitdiff
path: root/lib/sort.pm
Commit message (Collapse)AuthorAgeFilesLines
* Increase $sort::VERSION to 2.02Father Chrysostomos2012-11-301-1/+1
|
* fixed typos in sample code in sort.pm documentationMartin Becker2012-11-301-2/+2
|
* Remove dead code from sort.pmRafael Garcia-Suarez2006-09-031-3/+1
| | | p4raw-id: //depot/perl@28776
* Automatically set HINT_LOCALIZE_HH whenever %^H is modified.Nicholas Clark2006-04-011-2/+0
| | | p4raw-id: //depot/perl@27666
* eliminate HINT_HH_FOR_EVALRobin Houston2005-12-221-1/+1
| | | | | Message-ID: <20051222115455.GB30301@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26447
* sort.pm deserves a new version numberRafael Garcia-Suarez2005-12-191-1/+1
| | | p4raw-id: //depot/perl@26403
* Re: [PATCH] Make the 'sort' pragma lexically scopedRobin Houston2005-12-191-49/+48
| | | | | Message-ID: <20051219174620.GA17940@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26402
* Re: mention of "use sort" botched in perlfunc? + PATCHJohn P. Linderman2002-08-051-9/+97
| | | | | | From: "John P. Linderman" <jpl@research.att.com> Message-id: <200207211613.MAA69505@raptor.research.att.com> p4raw-id: //depot/perl@17685
* Fix bug id 20020427.004 on %^H.Rafael Garcia-Suarez2002-04-301-13/+17
| | | | | | | Add a regression test for %^H. Change the sort pragma implementation to use a global variable instead of %^H. p4raw-id: //depot/perl@16286
* [DOC PATCH] Re: [BUG] sort pragma not working ?Rafael Garcia-Suarez2002-03-291-0/+5
| | | | | Message-ID: <20020330002039.A716@rafael> p4raw-id: //depot/perl@15620
* capitalize correctly, noticed by David Dyck.Jarkko Hietaniemi2002-01-071-1/+1
| | | p4raw-id: //depot/perl@14111
* No need to overqualify.Jarkko Hietaniemi2002-01-061-1/+1
| | | p4raw-id: //depot/perl@14109
* Tiny fix from John P. Linderman.Jarkko Hietaniemi2001-11-271-1/+1
| | | p4raw-id: //depot/perl@13320
* sort tweaks from John P. Linderman.Jarkko Hietaniemi2001-11-271-47/+39
| | | p4raw-id: //depot/perl@13292
* sort pragma tweaks.Jarkko Hietaniemi2001-11-251-1/+2
| | | p4raw-id: //depot/perl@13263
* Implement the sort pragma. Split sort code from pp_ctl.cJarkko Hietaniemi2001-11-211-0/+111
to pp_sort.c. Includes the quicksort stabilizing layer from John P. Linderman. -Msort=qsort or -Msort=fast is faster than without (or with -Msort=mergesort or -Msort=safe) for short random inputs, but for some reason not quite as fast as 5.6.1 qsort. More benchmarking, profiling, tuning, and optimizing definitely needed. p4raw-id: //depot/perl@13179