From: Justin Guenther Date: Fri, 24 Mar 2006 21:05:46 +0000 (+0000) Subject: clarified method docs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=21b5c39db6b191a30d7676e60dd231c22064ba5f;p=dbsrgits%2FDBIx-Class-Historic.git clarified method docs --- diff --git a/lib/DBIx/Class/Storage/DBI/Cursor.pm b/lib/DBIx/Class/Storage/DBI/Cursor.pm index 1f277e2..42c253f 100644 --- a/lib/DBIx/Class/Storage/DBI/Cursor.pm +++ b/lib/DBIx/Class/Storage/DBI/Cursor.pm @@ -55,9 +55,15 @@ sub new { =head2 next +=over 4 + +=item Arguments: (none) + +=item Returns: \@row_columns + =back -Advances the cursor to the next row and returns it. +Advances the cursor to the next row and returns an arrayref of column values. =cut @@ -91,9 +97,16 @@ sub next { =head2 all +=over 4 + +=item Arguments: (none) + +=item Returns: \@row_columns+ + =back -Returns all rows in the L. +Returns a list of arrayrefs of column values for all rows in the +L. =cut