X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FMutable.pm;h=863a56156d24af3b605a6559e8c83f40a7d2a686;hp=c6e21434e65e9a3bcf0e3500d3dfb24ae045334c;hb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;hpb=fcf49f47b7655e0bc3ed8c3da7f1004cbb70c7a5 diff --git a/lib/LaTeX/TikZ/Set/Mutable.pm b/lib/LaTeX/TikZ/Set/Mutable.pm index c6e2143..863a561 100644 --- a/lib/LaTeX/TikZ/Set/Mutable.pm +++ b/lib/LaTeX/TikZ/Set/Mutable.pm @@ -11,12 +11,31 @@ LaTeX::TikZ::Set::Mutable - A role for set objects that can be appended to. Version 0.01 +=head1 DESCRIPTION + +L objects that are mutable consume this role. +This forces them to implement an C method describing how more elements can be added to the set. + =cut our $VERSION = '0.01'; use Any::Moose 'Role'; +=head1 METHODS + +This method is required by the interface : + +=over 4 + +=item * + +C + +=back + +=cut + requires qw( add );