7

Does Perl 6 have something equivalent to the Unicode::GCString's columns method?

Perl 5 example:

#!/usr/bin/env perl
use warnings;
use strict;
use 5.10.0;
use utf8;
use open qw( :std :utf8 );
use Unicode::GCString;

my $s = '合'; # U+5408

say length $s;      # 1

my $gcs = Unicode::GCString->new( $s );
say $gcs->columns;  # 2
0

1 Answer 1

4

Perl6 has builtin Unicode support, with native Uni and NFC/NFD/NFKC/NFKD normalized types.

What I vaguely understand is, that the Unicode::GCString::columns method determines eastasian language linebreaking support. 合 is composed of 2 "syllables" (they call it "grapheme clusters") on top of each other, thus 2 columns.

That being said, perl6 internally (on the MoarVM level) has access to the unicode database where the linebreaking properties are stored, but to my knowledge there's currently no module, like Unicode::UCD available to make the East_Asian_Width properties available for something like a Unicode::GCString.

On the other side, converting Unicode::LineBreak to perl6 looks easy enough, accessing the sombok library via NativeCall.

10
  • Upvoted because Reini is doing the key thing -- doing what it takes to try to usefully move this issue forward. I'm posting this comment first to counter balance the things I'm going to say next.
    – raiph
    Jul 9, 2015 at 14:24
  • A grapheme is what a human would typically call one character. So 合 is one grapheme, not two. Thus, using a recent Rakudo, `say "合".chars.say' returns 1.
    – raiph
    Jul 9, 2015 at 14:24
  • The thing underlying the columns function under discussion is "the concept of an inherent width of a [east asian] character. This width takes on either of two values: narrow or wide." (from unicode.org/reports/tr11/tr11-29.html)
    – raiph
    Jul 9, 2015 at 15:55
  • The East Asian Width Property Data File associated with UAX #11, namely EastAsianWidth.txt, is not mentioned in the MoarVM script that processes such files (github.com/MoarVM/MoarVM/blob/master/tools/ucd2c.pl). This suggests to me that the East Asian Width annex is currently completely ignored by MoarVM and thus, presumably, Rakudo (the Perl 6 compiler of note).
    – raiph
    Jul 9, 2015 at 16:06
  • Exactly, 合 is one grapheme, but the linebreak property clusters it into 2 columns. The sombok library does this. I'm not sure if this needs to be in MoarVM core, it rather looks like a perfect extension module, as in perl5. I added it to the list of wanted perl6 modules. github.com/perl6/perl6-most-wanted/blob/master/most-wanted/…
    – rurban
    Jul 10, 2015 at 9:06

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.