• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmark/H05-Mar-2014-938750

example/H05-Mar-2014-391211

inc/Module/H05-Mar-2014-2,8852,166

lib/Data/H05-Mar-2014-1,856970

t/H05-Mar-2014-2,2641,579

xt/H05-Mar-2014-13194

.gitignoreH A D20-Oct-2012152 2019

.shipitH A D20-Oct-2012211 85

ChangesH A D05-Mar-20145.6 KiB171134

DataUtil.xsH A D03-Apr-201326.2 KiB1,2501,030

MANIFESTH A D20-Oct-20122 KiB106105

MANIFEST.SKIPH A D20-Oct-20121.1 KiB6644

META.ymlH A D05-Mar-2014830 3837

Makefile.PLH A D20-Oct-2012671 3929

READMEH A D20-Oct-2012817 4526

data-util.hH A D20-Oct-20121.2 KiB5437

misc_scalar.cH A D20-Oct-20122.5 KiB145123

mro_compat.hH A D20-Oct-20123.2 KiB13981

str_util.hH A D20-Oct-2012582 3530

subs.cH A D05-Mar-20146.3 KiB220145

typemapH A D20-Oct-2012153 2012

xshelper.hH A D05-Mar-20142.3 KiB10255

README

1NAME
2
3	Data::Util - A selection of utilities for data and data types
4
5SYNOPSIS
6
7	use Data::Util qw(:all);
8
9	if(is_instance($obj, 'SomeClass')){
10		# ...
11	}
12
13	Or, try "perl -Mblib example/synopsis.pl" after "make test".
14
15DESCRIPTION
16
17	This module provides utilities for data and data types.
18
19	See "perldoc Data::Util" for the rest of the document.
20
21BENCHMARKS
22
23	There are benchmarks in "benchmark/" directory,
24	e.g. try "perl -Mblib example/inst_bench.pl" after "make test".
25
26DEPENDENCIES
27
28	perl 5.8.1 or later.
29
30INSTALLATION
31
32	To install this module, run the following commands:
33
34	perl Makefile.PL
35	make
36	make test
37	make install
38
39COPYRIGHT AND LICENCE
40
41	Copyright (c) 2008 Goro Fuji, Some rights reserved.
42
43	This program is free software; you can redistribute it and/or
44	modify it under the same terms as Perl itself.
45