diff options
| author | fukachan <fukachan> | 2003-02-11 11:37:47 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2003-02-11 11:37:47 +0000 |
| commit | 9e73fc1b283f6785a2150935e3adac2e7078dd91 (patch) | |
| tree | 46aa548f90009faa4e89591c5124d3810b2ca654 /fml/lib/IO/Adapter/Array.pm | |
| parent | a99699bcb54e08e7438061df4b6b200892fdeebe (diff) | |
| download | fml8-9e73fc1b283f6785a2150935e3adac2e7078dd91.tar.gz fml8-9e73fc1b283f6785a2150935e3adac2e7078dd91.tar.bz2 fml8-9e73fc1b283f6785a2150935e3adac2e7078dd91.zip | |
FNF: add comment
Diffstat (limited to 'fml/lib/IO/Adapter/Array.pm')
| -rw-r--r-- | fml/lib/IO/Adapter/Array.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/fml/lib/IO/Adapter/Array.pm b/fml/lib/IO/Adapter/Array.pm index cb0fd87a..d0ce803f 100644 --- a/fml/lib/IO/Adapter/Array.pm +++ b/fml/lib/IO/Adapter/Array.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Array.pm,v 1.28 2003/02/01 10:55:04 fukachan Exp $ +# $FML: Array.pm,v 1.29 2003/02/11 09:48:17 fukachan Exp $ # package IO::Adapter::Array; @@ -155,6 +155,10 @@ return values corresponding with the specified key as array_ref. =cut +# Descriptions: return value corresponding with the specified key as STR. +# Arguments: OBJ($self) STR($key) +# Side Effects: none +# Return Value: STR sub get_value_as_str { my ($self, $key) = @_; @@ -163,6 +167,10 @@ sub get_value_as_str } +# Descriptions: return value corresponding with the specified key as ARRAY_REF. +# Arguments: OBJ($self) STR($key) +# Side Effects: none +# Return Value: ARRAY_REF sub get_value_as_array_ref { my ($self, $key) = @_; |
