The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Algorithm::LSH::Hash::Cosine;
use strict;
use warnings;
use base qw(Algorithm::LSH::Hash);

1;
__END__

=head1 NAME

Algorithm::LSH::Hash::Cosine - Hash function class (Cosine) 

=head1 SYNOPSYS

  use Algorithm::LSH::Hash::Cosine;
  my $hash = Algorithm::LSH::Hash::Cosine->new;
  my $hashed_array = $hash->do_hashing([123,456,789]);

=head1 METHODS

=head2 do_hashing

=head1 AUTHOR

Takeshi Miki E<lt>miki@cpan.orgE<gt>

=head1 LICENSE

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

=head1 SEE ALSO

=cut