NAME
Lib::CPUInfo::Package - CPUInfo Package object
VERSION
version 0.001
SYNOPSIS
my $package = get_current_package();
printf "Package name: %s\n", $package->name();
...
ATTRIBUTES
name
my $name = $package->name();
Returns the name of the package as a string.
processor_start
my $start = $package->processor_start();
Returns an integer of the package processor start.
processor_count
my $count = $package->processor_count();
Returns an integer of the package processor count.
core_start
my $start = $package->core_start();
Returns an integer of the package core start.
core_count
my $count = $package->core_count();
Returns an integer of the package core count.
cluster_start
my $start = $package->cluster_start();
Returns an integer of the package cluster start.
cluster_count
my $count = $package->cluster_count();
Returns an integer of the package cluster count.
AUTHOR
Sawyer X
COPYRIGHT AND LICENSE
This software is copyright (c) 2021 by Sawyer X.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.