Help for this page

Select Code to Download


  1. or download this
     sub search_me {
       my $self = shift;
    ...
       return @results;
    
    }
    
  2. or download this
    $VAR1 = [
              {
    ...
              }
            ];
    
  3. or download this
    package Note::Attribute::Trait::Searchable {
        use Moose::Role;
        Moose::Util::meta_attribute_alias('Searchable');
    }
    
  4. or download this
    package Note::Searchable {
        use Moose::Role;
    ...
        }
        
    }
    
  5. or download this
    package Note {
        use Moose;
    ...
        no Moose;
    
    }
    
  6. or download this
    my $note = Note->new(
        title   => 'My title xyzzy',
    ...
    
    say Dumper [ $note->search('xyzzy') ];
    
  7. or download this
    $VAR1 = [
              {
    ...
                'value' => 'My title xyzzy'
              }
            ];