GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Heap::Simple::Perl(3) User Contributed Perl Documentation Heap::Simple::Perl(3)

Heap::Simple::Perl - A pure perl implementation of the Heap::Simple interface

    # Let Heap::Simple decide which implementation that provides its interface
    # it will load and use. This may be Heap::Simple::Perl or it may not be.
    # Still, this is the normal way of using Heap::Simple
    use Heap::Simple;
    my $heap = Heap::Simple->new(...);
    # Use heap as described in the Heap::Simple documentation

    # If for some reason you insist on using this version:
    use Heap::Simple::Perl;
    my $heap = Heap::Simple::Perl->new(...);
    # Use the pure perl heap as described in the Heap::Simple documentation

This module provides a pure perl implementation of the interface described in Heap::Simple. Look there for a description.

  • The dirty option has no effect. This heap type doesn't currently do any potentially unsafe optimizations.
  • Heap::Simple->implementation will return "Heap::Simple::Perl" if it selected this module.

None.

Heap::Simple, Heap::Simple::XS

Ton Hospel, <Heap-Simple@ton.iguana.be>

Parts are inspired by code by Joseph N. Hall <http://www.perlfaq.com/faqs/id/196>

Copyright 2003 by Ton Hospel

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2008-01-27 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.