Deprecated.
The maintainer of this module has indicated that the module is deprecated and no longer suitable for use.
NAME
Lingua::AFR::Numbers - Number to word conversion in Afrikaans (DEPRECATED)
VERSION
version 0.2603270
DESCRIPTION
This module is deprecated. Please use Lingua::AFR::Num2Word instead.
This module is a thin wrapper that delegates to Lingua::AFR::Num2Word for backward compatibility with code using the old Lingua::AFR::Numbers API.
SYNOPSIS
# Old API (deprecated):
use Lingua::AFR::Numbers;
my $obj = Lingua::AFR::Numbers->new();
my $text = $obj->parse(42);
# New API (preferred):
use Lingua::AFR::Num2Word qw(num2afr_cardinal);
my $text = num2afr_cardinal(42);
FUNCTIONS
- new (deprecated)
-
Constructor. Emits a deprecation warning. Delegates to Lingua::AFR::Num2Word.
- parse (positional, deprecated)
-
1 num number to convert => str Afrikaans cardinal textDelegates to
num2afr_cardinal().
SEE ALSO
Lingua::AFR::Num2Word — the replacement module.
AUTHORS
initial coding:
Alistair Francis E<lt>cpan@alizta.comE<gt>
specification, maintenance:
Richard C. Jelinek E<lt>rj@petamem.comE<gt>
maintenance, coding (2025-present):
PetaMem AI Coding Agents
COPYRIGHT
Copyright (c) PetaMem, s.r.o. 2004-present
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.