Re: Pointer to bug question

2022-11-27 Thread Clifton Wood
ToddAndMargo: Why are you referencing NativeHelpers::Blob when I've linked to the code you need. The bug was in the code snippet I've sent. NONE of my stuff is available via zef because CURI (and hence zef) have problems with large scale code that I am still trying to resolve. You should be able

Re: What is this "\t"?

2022-11-27 Thread Clifton Wood
@ToddAndMargo: These are all explained in the Raku documentation. Long story short: "my \t" -- this is a RAW definition. You can use it to hold types, as in this case. ".of" is a method for Parametric Roles. It generally returns a type "??" is the trinary operator. (expr) ?? !! If you are

What is this "\t"?

2022-11-27 Thread ToddAndMargo via perl6-users
Hi All, On https://github.com/salortiz/NativeHelpers-Blob/blob/master/lib/NativeHelpers/Blob.pm6 Line 96 my \t = ptr.of ~~ void ?? $type.of !! ptr.of; What is `\t`? What of `.of` What is `??`? What is `!!` Yours in confusion. -T