-
-
27 Feb 2018 08:40:23 UTC
- Distribution: Lucy
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Clone repository
- Issues
- Testers (1263 / 3 / 7)
- Kwalitee
Bus factor: 1- License: apache_2_0
- Perl: v5.8.3
- Activity
24 month- Tools
- Download (1.12MB)
- 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
- Clownfish
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Lucy::Search::Span - An offset, a length, and a weight.
SYNOPSIS
my $combined_length = $upper_span->get_length + ( $upper_span->get_offset - $lower_span->get_offset ); my $combined_span = Lucy::Search::Span->new( offset => $lower_span->get_offset, length => $combined_length, ); ...
DESCRIPTION
Span objects store information about a span across an array of… something. The unit is context-dependent.
Text is one possibility, in which case offset and length might be measured in Unicode code points. However, the Span could also refer to a span within an array of tokens, for example – in which case the start and offset might be measured in token positions.
CONSTRUCTORS
new
my $span = Lucy::Search::Span->new( offset => 75, # required length => 7, # required weight => 1.0, # default 0.0 );
Create a new Span.
offset - Integer offset, unit is context-dependent.
length - Integer length, unit is context-dependent.
weight - A floating point weight.
METHODS
get_offset
my $int = $span->get_offset();
Accessor for
offset
attribute.set_offset
$span->set_offset($offset);
Setter for
offset
attribute.get_length
my $int = $span->get_length();
Accessor for
length
attribute.set_length
$span->set_length($length);
Setter for
length
attribute.get_weight
my $float = $span->get_weight();
Accessor for
weight
attribute.set_weight
$span->set_weight($weight);
Setter for
weight
attribute.compare_to
my $int = $span->compare_to($other);
Indicate whether one object is less than, equal to, or greater than another.
other - Another Obj.
Returns: 0 if the objects are equal, a negative number if
self
is less thanother
, and a positive number ifself
is greater thanother
.INHERITANCE
Lucy::Search::Span isa Clownfish::Obj.
Module Install Instructions
To install Lucy, copy and paste the appropriate command in to your terminal.
cpanm Lucy
perl -MCPAN -e shell install Lucy
For more information on module installation, please visit the detailed CPAN module installation guide.