The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Search::Fzf::AlgoCpp - A C++ backend for Fzf.

SYNOPSIS

  use Search::Fzf::AlgoCpp;
  my @perlArr = qw(Hello fzf world);
  my $tac = 0;
  my $caseInsensitive = 1;
  my $headerLines = 0;
  my $algo = Search::Fzf::AlgoCpp->new($tac, $caseInsensitive, $headerLines);
  $algo->read(\@perlArr);

DESCRIPTION

A C++ backend for Fzf, it contains input and match functions.

AUTHOR

Liyao, <liyao0117@qq.com<gt>

COPYRIGHT AND LICENSE

  Copyright (C) 2009 by Liyao.

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