YAML::PP - Disable Cyclic References
use YAML::PP;
my $yp = YAML::PP->new(
# make it fatal
cyclic_refs => 'fatal',
# just load undef insted of ref and ignore
cyclic_refs => 'ignore',
# unfortunately no 'weaken' option yet
# it's complicated! ;-)
);
🙂