From: Dave Rolsky Date: Tue, 19 Feb 2013 20:56:35 +0000 (-0600) Subject: Add some text on the interoperability of Moose & Moo to perlootut X-Git-Tag: upstream/5.20.0~3977 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a733b0cccc9700063dc0098097b23be2dcbf339d;p=platform%2Fupstream%2Fperl.git Add some text on the interoperability of Moose & Moo to perlootut --- diff --git a/pod/perlootut.pod b/pod/perlootut.pod index c5b0c91..e494f23 100644 --- a/pod/perlootut.pod +++ b/pod/perlootut.pod @@ -596,6 +596,15 @@ often faster when loading your modules. Additionally, none of its dependencies require XS, so it can be installed on machines without a compiler. +One of C's most compelling features is its interoperability with +C. When someone tries to use C's introspection API on a +C class or role, it is transparently inflated into a C +class or role. This makes it easier to incorporate C-using code +into a C code base and vice versa. + +For example, a C class can subclass a C class using +C or consume a C role using C. + The C authors hope that one day C can be made obsolete by improving C enough, but for now it provides a worthwhile alternative to C.