# This file auto generated from Data\common\transforms\Thai-ThaiLogical.xml
# on Wed 3 Jan 11:17:34 pm GMT
use strict;
use version;
our $VERSION = version->declare('v0.40.0');
use v5.10.1;
use mro 'c3';
use utf8;
use if $^V ge v5.12.0, feature => 'unicode_strings';
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
use Moo;
BEGIN {
die "Transliteration requires Perl 5.18 or above"
unless $^V ge v5.18.0;
}
no warnings 'experimental::regex_sets';
has 'transforms' => (
is => 'ro',
isa => ArrayRef,
init_arg => undef,
default => sub { [
qr/(?^um:\G.)/,
{
type => 'transform',
data => [
],
},
{
type => 'conversion',
data => [
{
before => q(),
after => q(),
replace => q(((?:(?=[\p{thai}ก-ฺเ-๛])[\p{Logical_Order_Exception}]))((?:(?!(?:(?=[\p{thai}ก-ฺเ-๛])[\p{Logical_Order_Exception}]))[\p{thai}ก-ฺเ-๛]))),
result => q($2$1),
revisit => 0,
},
]
},
] },
);
no Moo;
1;
# vim: tabstop=4