Skip to content

Commit

Permalink
Make --unicode about 2x as fast by hypering
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Nov 20, 2022
1 parent 34065b8 commit ef5408b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@
Revision history for App-Rak

{{$NEXT}}
- Make --unicode option about 2x as fast with hypering

0.2.10 2022-11-19T20:01:25+01:00
- Bump dependency on "rak" to get readability fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Rak.rakumod
Expand Up @@ -3160,7 +3160,7 @@ my sub action-unicode(--> Nil) {
class Unicodes {
method lines() {
(0..0x10FFFF).map: {
(0..0x10FFFF).hyper(batch => 2048).map: {
my $uniname := .uniname;
$uniname
unless $uniname.starts-with('<') && $uniname.ends-with('>')
Expand Down

0 comments on commit ef5408b

Please sign in to comment.