-
-
27 Feb 2018 08:38:55 UTC
- Distribution: Clownfish
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Clone repository
- Issues
- Testers (1313 / 0 / 7)
- Kwalitee
Bus factor: 0- License: apache_2_0
- Perl: v5.8.3
- Activity
24 month- Tools
- Download (230.31KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- The Apache Lucy Project <dev at lucy dot apache dot org>
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Clownfish::Blob - Immutable buffer holding arbitrary bytes.
SYNOPSIS
my $blob = Clownfish::Blob->new($byte_string); my $byte_string = $blob->to_perl;
DESCRIPTION
CONSTRUCTORS
new
my $blob = Clownfish::Blob->new($byte_string);
Create a Blob containing the passed-in bytes.
METHODS
get_size
my $int = $blob->get_size();
Return the number of bytes held by the Blob.
compare_to
my $int = $blob->compare_to($other);
Indicate whether one Blob is less than, equal to, or greater than another. The byte contents of the Blobs are compared lexicographically. Throws an exception if
other
is not a Blob.Returns: 0 if the Blobs are equal, a negative number if
self
is less thanother
, and a positive number ifself
is greater thanother
.clone
my $result = $blob->clone();
Return a clone of the object.
INHERITANCE
Clownfish::Blob isa Clownfish::Obj.
Module Install Instructions
To install Clownfish, copy and paste the appropriate command in to your terminal.
cpanm Clownfish
perl -MCPAN -e shell install Clownfish
For more information on module installation, please visit the detailed CPAN module installation guide.