Help for this page

Select Code to Download


  1. or download this
    my $notes = My::Dashboard::Note->list;
    while ($notes->load_next){
      print $notes->headline, $notes->created, $notes->body;
    }
    
  2. or download this
    sub load_next{
      my ($self, %arguments) = @_;
    ...
      return $self->{storage}{next};
    }