summaryrefslogtreecommitdiff
path: root/README.mkdn
diff options
context:
space:
mode:
Diffstat (limited to 'README.mkdn')
-rw-r--r--README.mkdn50
1 files changed, 31 insertions, 19 deletions
diff --git a/README.mkdn b/README.mkdn
index eb090b8..1ad6a9f 100644
--- a/README.mkdn
+++ b/README.mkdn
@@ -4,7 +4,7 @@ Data::Perl - Base classes wrapping fundamental Perl data types.
# VERSION
-version 0.002009
+version 0.002011
# SYNOPSIS
@@ -47,68 +47,80 @@ note is all classes currently do no validation on constructor input.
Data::Perl is a container class for the following classes:
-- [Data::Perl::Collection::Hash](http://search.cpan.org/perldoc?Data::Perl::Collection::Hash)
-- [Data::Perl::Collection::Array](http://search.cpan.org/perldoc?Data::Perl::Collection::Array)
-- [Data::Perl::String](http://search.cpan.org/perldoc?Data::Perl::String)
-- [Data::Perl::Number](http://search.cpan.org/perldoc?Data::Perl::Number)
-- [Data::Perl::Counter](http://search.cpan.org/perldoc?Data::Perl::Counter)
-- [Data::Perl::Bool](http://search.cpan.org/perldoc?Data::Perl::Bool)
-- [Data::Perl::Code](http://search.cpan.org/perldoc?Data::Perl::Code)
+- [Data::Perl::Collection::Hash](https://metacpan.org/pod/Data::Perl::Collection::Hash)
+- [Data::Perl::Collection::Array](https://metacpan.org/pod/Data::Perl::Collection::Array)
+- [Data::Perl::String](https://metacpan.org/pod/Data::Perl::String)
+- [Data::Perl::Number](https://metacpan.org/pod/Data::Perl::Number)
+- [Data::Perl::Counter](https://metacpan.org/pod/Data::Perl::Counter)
+- [Data::Perl::Bool](https://metacpan.org/pod/Data::Perl::Bool)
+- [Data::Perl::Code](https://metacpan.org/pod/Data::Perl::Code)
# ALPHA API
The API provided by these modules is as of now considered alpha and undecided.
-The API __WILL__ change. If you are writing code that you will not touch again
+The API **WILL** change. If you are writing code that you will not touch again
for years, do not use this until this warning is removed.
# PROVIDED FUNCTIONS
Data::Perl exports helper constructor functions to interface with the above classes:
-- __hash(key, value, ...)__
+- **hash(key, value, ...)**
Returns a Data::Perl::Collection::Hash object initialized with the optionally passed in key/value args.
-- __array(@args)__
+- **array(@args)**
Returns a Data::Perl::Collection::Array object initialized with the optionally passed in values.
-- __string($arg)__
+- **string($arg)**
Returns a Data::Perl::String object initialized with the optionally passed in scalar arg.
-- __number($arg)__
+- **number($arg)**
Returns a Data::Perl::Number object initialized with the optionally passed in scalar arg.
-- __counter($arg)__
+- **counter($arg)**
Returns a Data::Perl::Counter object initialized with the optionally passed in scalar arg.
-- __bool($arg)__
+- **bool($arg)**
Returns a Data::Perl::Bool object initialized with the truth value of the passed in scalar arg.
-- __code($arg)__
+- **code($arg)**
Returns a Data::Perl::Code object initialized with the optionally passed in scalar coderef as an arg.
# THANKS
-Much thanks to the [Moose](http://search.cpan.org/perldoc?Moose) team for their work with native traits, for which
+Much thanks to the [Moose](https://metacpan.org/pod/Moose) team for their work with native traits, for which
much of this work is based.
# SEE ALSO
-- [MooX::HandlesVia](http://search.cpan.org/perldoc?MooX::HandlesVia)
+- [MooX::HandlesVia](https://metacpan.org/pod/MooX::HandlesVia)
# AUTHOR
Matthew Phillips <mattp@cpan.org>
+# MAINTAINER
+
+Toby Inkster <tobyink@cpan.org> since version 0.002010.
+
+# CONTRIBUTORS
+
+- Graham Knop <haarg@haarg.org>
+- Jon Portnoy <avenj@cobaltirc.org>
+- kristof.pap@gmail.com <kristof.pap@gmail.com>
+- Matt Phillips <mattp@cpan.org>
+- Toby Inkster <tobyink@cpan.org>
+
# COPYRIGHT AND LICENSE
-This software is copyright (c) 2014 by Matthew Phillips <mattp@cpan.org>.
+This software is copyright (c) 2020 by Matthew Phillips <mattp@cpan.org>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.