u8/s8/u16/s16/u32/s32/u64/s64array


u8array(i1, @rest ...)
s8array(i1, @rest ...)
u16array(i1, @rest ...)
s16array(i1, @rest ...)
u32array(i1, @rest ...)
s32array(i1, @rest ...)
u64array(i1, @rest ...)
s64array(i1, @rest ...)
      

Return an array of the unsigned/signed 8/16/32/64-bit integer values.

The literals of these arrays are prefixed by: #u8, #s8, #s16, #u16, #s32, #u32, #s64 and #u64 respectively.

Examples:


u8array(102, 120);
// #u8[102, 120]
#s64[1201293, 434343434244233232, -23494930020920];
// #s64[1201293, 434343434244233232, -23494930020920]
      

Also see:

array
f32/f64array


Core Module Index | Main Index