Result for AAE8921599F876FAA4B5E1FEB4D89DA932644140

Query result

Key Value
FileName./usr/share/doc/packages/perl-MooseX-Traits/Changes
FileSize2050
MD584F900C784E45A07293AB8F4E20C7D3C
SHA-1AAE8921599F876FAA4B5E1FEB4D89DA932644140
SHA-256FB3A4C551EA390DC07BE63F1455E983D7EB4FCD2194FFFE7FDB022324D0F6176
SSDEEP48:c3K+GuK9VN7BG4+7sfgz7rTNFGNiqwxjV4:cTQ9Vh4MgzHTekZ9C
TLSHT1A3414411993629F7A5C180C301E31655263A317FE212296972ED91AC0F41F33639B3A5
hashlookup:parent-total28
hashlookup:trust100

Network graph view

Parents (Total: 28)

The searched file hash is included in 28 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD5740EA6E0FDB864452B780D9605ACD3FD
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or applying roles to the instance one-by-one, he can just pass a 'traits' parameter to the class's 'new_with_traits' constructor. This role will then apply the roles in one go, cache the resulting class (for efficiency), and return a new instance. Arguments meant to initialize the applied roles' attributes can also be passed to the constructor.
PackageMaintainerumeabot <umeabot>
PackageNameperl-MooseX-Traits
PackageRelease6.mga9
PackageVersion0.130.0
SHA-11DA7A0E42F12A0ED6B597E363A555486A4B89633
SHA-256E1AF92C8D318885528DEC7D0DA6A54466EC4C2365B3983B452B4319B0B9EF095
Key Value
MD5D8C4565CF0C1B08DE355523AA42E5454
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageRelease19.1
PackageVersion0.13
SHA-12BF3A6FB750D872F454211C35C24A9707B330D67
SHA-2563333E9FEDB7758C765F83AE2717191C70E524317330DE426396A170279845AF2
Key Value
MD51B525135A117CA08979EF1A447E764C3
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageRelease1.51
PackageVersion0.13
SHA-140B2111CF5F531F9AB0DDD57560BD38F45C65F87
SHA-256EA7828CAB34EE64C31561729562F39637219F800EE1A37D99BB75BB2F3FD2FB4
Key Value
MD51F8070463714EE80397F323E53901380
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-MooseX-Traits
PackageReleasebp154.1.17
PackageVersion0.13
SHA-146F2D3F80D32E4C5DBB23AE3BA277CCDE9864BD3
SHA-256B2D1FDE873EDD989ABFADA77DF56E0090FE2395BF43C8613D1DF0926844571B2
Key Value
MD534C79F90ABCB21245D4E89F53306EF1D
PackageArchnoarch
PackageDescriptionMooseX::Traits allows one to arbitrarily add components to an object as needed, w/o having to explicitly construct new classes: e.g. Foo->with_traits('Bar')->new(...);
PackageMaintainerFedora Project
PackageNameperl-MooseX-Traits
PackageRelease13.fc32
PackageVersion0.13
SHA-147EDB4A1CD83D1C4140433EC43D273059337DB0E
SHA-2564F87A11A75E647ABB7ECF69EE65DE825AC48F47214CBCE4BDC862C85F1AA032F
Key Value
MD5497106F7743B4B4F9E46AAAA543B0735
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageRelease19.16
PackageVersion0.13
SHA-1499F1BED16991270B287A98B66C76EBA801C9129
SHA-25666CAA61168B88E15ACFD15054B2C956095BC0AD9738CD30C777FE3B71629A049
Key Value
MD521BF76FA4ED63B01C2CB91AC07BF5799
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageRelease19.13
PackageVersion0.13
SHA-14BE4425D5A7F2B0502C54F6063F78C0FC780ABB6
SHA-256B50DAB4CB3E6D5CD09181F8861746E74888B8D99B64D558940FCC3E79BCCEF00
Key Value
MD5C2924C45779DCAF13411942CE9F72CBD
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageReleaselp152.19.1
PackageVersion0.13
SHA-150B37D873D5DCAAC0131C2514199D81DD14DB1A3
SHA-256266815EC2618F6DEB620D3091DD92B4A0CB12EC56A187B3880529B9E4CD765EA
Key Value
MD514D3771AA04E8655979B63DD9955D3C6
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageReleaselp151.19.1
PackageVersion0.13
SHA-15326BA2FC28E449E9A6C2B5CED77FCEA40A66ED0
SHA-2562CEC6778EEB1F562A162495768D4C7F1496F8AC559BEDA416C0588A214AF4793
Key Value
MD5FF71D6A8C604B69A8953FDECD12FC348
PackageArchnoarch
PackageDescriptionOften you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or apply roles to the instance one-by-one, he can just create a new class from yours with 'with_traits', and then instantiate that. There is also 'new_with_traits', which exists for compatibility reasons. It accepts a 'traits' parameter, creates a new class with those traits, and then instantiates it. Class->new_with_traits( traits => [qw/Foo Bar/], foo => 42, bar => 1 ) returns exactly the same object as Class->with_traits(qw/Foo Bar/)->new( foo => 42, bar => 1 ) would. But you can also store the result of 'with_traits', and call other methods: my $c = Class->with_traits(qw/Foo Bar/); $c->new( foo => 42 ); $c->whatever( foo => 1234 ); And so on.
PackageNameperl-MooseX-Traits
PackageReleaselp150.19.2
PackageVersion0.13
SHA-157D70764CF2672963BC2777A2DE2CFAAAD06599A
SHA-2566028D3EB910AA9BF61FEA1B0E20A06C44597921A21958D3788950782BD6EDD30