-
This works correctly:
```tsx
let a = ( a: T ) => {
}
```
But this does not:
```tsx
let a = ( a: T ) => {
}
```
-
I think it would be good to have these functions generically typed. If we know the shape of the payload, we can pass it here and get better type completion.
```ts
createSigner
createVerifier
`…
-
See existing work in #812, and see below for a list of functions that we needed to consider, and some thoughts on what form of genericity is needed. Goal is to make sure that data frame extensions ret…
-
Currently it is not possible to access the functions in `ModelicaUtilities.h` from an `ExternalObject` that is implemented as a shared library in a generic way. Therefore I propose to introduce an `Ex…
-
**Describe the bug**
Hi there! Firstly,thanks for your great work. But recently I tried to use dynamorio to wrap functions, like this:
```
static void module_load_event(void *drcontext, const modul…
-
Generic modules are a reasonably convenient way of introducing powerful generics without requiring full WGSL type checking. For example, instead of repeatedly writing `my_generic_func(3)`, one could r…
-
# Documentation
Currently the definition for the functions only refers to multiple dispatch which at least for me really isn't the first thing I think of when someone says that. I think they should…
-
@MarcoGorelli
As mentionned today after your very good talk at pydata Paris, this tutorial repo is so useful :+1:
My suggetion is to add an example of a function taking as input n columns and r…
-
if you load the `mvp` package and then the `spray` package, loads of functions get masked. e.g. in the `mvp` package, sourcing `inst/coercion.R` gives:
```
> source("coercion.R") # low-level fu…
-
I understand Generic Functions enable
1. static dispatch (https://tourofrust.com/84_en.html) instead of / over
2. dynamic dispatch (https://tourofrust.com/81_en.html).
What I do not understand …