YAML-0.62 > YAML::Dumper
名前¶
YAML::Dumper - YAML class for dumping Perl objects to YAML
YAML::Dumper - Perl オブジェクトを YAML にダンプする YAML クラス
概要¶
use YAML::Dumper;
my $dumper = YAML::Dumper->new;
$dumper->indent_width(4);
print $dumper->dump({foo => 'bar'});
説明¶
YAML::Dumper is the module that YAML.pm used to serialize Perl objects to YAML. It is fully object oriented and usable on its own.
YAML::Dumper は YAML.pm が Perl オブジェクトを YAML へとシリアライズ するために利用するモジュールです. 完全なオブジェクト指向になっていて それ自身で利用できます.
著者¶
Ingy döt Net <[email protected]>
著作権¶
Copyright (c) 2006. Ingy döt Net. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
このプログラムはフリーソフトウェアです。あなたは Perl と同じ ライセンスの 元で再配布及び変更を行うことが出来ます.