Skip to content

Commit

Permalink
Split method lists to make them more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-binary committed Jun 21, 2024
1 parent ffb2b65 commit 3395e39
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions lib/Myriad/Role/Storage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,24 @@ a concrete implementation - instead, see classes such as:
=cut

our @WRITE_METHODS = qw(set getset getdel incr push unshift pop shift hash_set hash_add orderedset_add orderedset_remove_member orderedset_remove_byscore del unlink set_unless_exists);
our @WRITE_METHODS = qw(
set
getset
getdel
incr
push
unshift
pop
shift
hash_set
hash_add
orderedset_add
orderedset_remove_member
orderedset_remove_byscore
del
unlink
set_unless_exists
);

=head2 set
Expand Down Expand Up @@ -264,7 +281,20 @@ method set_unless_exists;
=cut

our @READ_METHODS = qw(get observe watch_keyspace hash_get hash_keys hash_values hash_exists hash_count hash_as_list orderedset_member_count orderedset_members when_key_changed);
our @READ_METHODS = qw(
get
observe
watch_keyspace
hash_get
hash_keys
hash_values
hash_exists
hash_count
hash_as_list
orderedset_member_count
orderedset_members
when_key_changed
);

=head2 get
Expand Down

0 comments on commit 3395e39

Please sign in to comment.