| HTTP::Headers::ActionPack::PriorityList(3pm) | User Contributed Perl Documentation | HTTP::Headers::ActionPack::PriorityList(3pm) |
HTTP::Headers::ActionPack::PriorityList - A Priority List
version 0.09
use HTTP::Headers::ActionPack::PriorityList;
# simple constructor
my $plist = HTTP::Headers::ActionPack::PriorityList->new(
[ 1.0 => 'foo' ],
[ 0.5 => 'bar' ],
[ 0.2 => 'baz' ],
);
# from headers
my $plist = HTTP::Headers::ActionPack::PriorityList->new_from_string(
'foo; q=1.0, bar; q=0.5, baz; q=0.2'
);
This is a simple priority list implementation, this is used to handle the Accept-* headers as they typically will contain values along with a "q" value to indicate quality.
When two items have the same priority, they are returned in the order that they were found in the header.
Stevan Little <stevan.little@iinteractive.com>
This software is copyright (c) 2012 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 2022-06-14 | perl v5.34.0 |