NAME
Faker::Plugin::AddressLongitude - Address Longitude
ABSTRACT
Address Longitude for Faker
VERSION
1.16
SYNOPSIS
package main;
use Faker::Plugin::AddressLongitude;
my $plugin = Faker::Plugin::AddressLongitude->new;
# bless(..., "Faker::Plugin::AddressLongitude")
DESCRIPTION
This package provides methods for generating fake data for address longitude.
INHERITS
This package inherits behaviors from:
METHODS
This package provides the following methods:
execute
execute(HashRef $data) (Str)
The execute method returns a returns a random fake address longitude.
Since 1.10
- execute example 1
-
package main; use Faker::Plugin::AddressLongitude; my $plugin = Faker::Plugin::AddressLongitude->new; # bless(..., "Faker::Plugin::AddressLongitude") # my $result = $plugin->execute; # 30.843133; # my $result = $plugin->execute; # 77.079663; # my $result = $plugin->execute; # -41.660985;
new
new(HashRef $data) (Plugin)
The new method returns a new instance of the class.
Since 1.10