NAME
Nano::Stash - Stashable Role
ABSTRACT
Stashable Entity Role
SYNOPSIS
DESCRIPTION
This package provides an entity-stashing role, useful for the ad-hoc persisting of Nano::Node entities. This role also makes it possible to save/load circularly dependent entities.
LIBRARIES
This package uses type constraints from:
ATTRIBUTES
This package has the following attributes:
stashed
stashed(HashRef)
This attribute is read-only, accepts (HashRef)
values, and is optional.
METHODS
This package implements the following methods:
get
get(Str
$name
) : Maybe[Node]
The get method finds and loads a previously stashed Nano::Node entity.
- get example #2
-
my
$example
= Example->new;
$example
->bestie(
$example
);
$example
->save;
my
$bestie
=
$example
->get(
'bestie'
);
set
set(Str
$name
, Node
$node
) : Node
The set method stashes the Nano::Node entity provided by name. This does not save the subject or invocant.
stash
stash(Str
$name
, Maybe[Node]
$node
) : Maybe[Node]
The stash method will "get" or "set" a stashed Nano::Node entity based on the arguments provided.
- stash example #2
-
my
$example
= Example->new;
$example
->bestie(
$example
);
$example
->save;
my
$bestie
=
$example
->stash(
'bestie'
);
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".