Mercurial > hg > Others > Rakudo
view src/core.c/natives.pm6 @ 0:c341f82e7ad7 default tip
Rakudo branch in cr.ie.u-ryukyu.ac.jp
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 26 Dec 2019 16:50:27 +0900 |
parents | |
children |
line wrap: on
line source
my native int is repr('P6int') is Int { } my native int8 is repr('P6int') is Int is nativesize( 8) { } my native int16 is repr('P6int') is Int is nativesize(16) { } my native int32 is repr('P6int') is Int is nativesize(32) { } my native int64 is repr('P6int') is Int is nativesize(64) { } my native uint is repr('P6int') is Int is unsigned { } my native uint8 is repr('P6int') is Int is nativesize( 8) is unsigned { } my native byte is repr('P6int') is Int is nativesize( 8) is unsigned { } my native uint16 is repr('P6int') is Int is nativesize(16) is unsigned { } my native uint32 is repr('P6int') is Int is nativesize(32) is unsigned { } my native uint64 is repr('P6int') is Int is nativesize(64) is unsigned { } my native num is repr('P6num') is Num { } my native num32 is repr('P6num') is Num is nativesize(32) { } my native num64 is repr('P6num') is Num is nativesize(64) { } my native str is repr('P6str') is Str { } # vim: ft=perl6 expandtab sw=4