Dag Brattli
Dag Brattli
Looks like the documentation is not being updated. I'll look into it this weekend.
There is so many ways to name this function `collect`, `select_many`, `bind`, `merge_map`, `map_merge`, `flat_map`, ´concat_map`. The more intuitive name would be `map_merge` since it flattens after the transformation (map)....
FYI: Literal types in Python: https://peps.python.org/pep-0586/ . I would think they work mostly the same way as in TS, but syntax is a bit different. You can basically choose if...
Thanks. Please make a PR
There used to be a hidden feature that if you did `--fableLib site-packages` then Fable would try to import fable-library from the installed python packages. I tried it but I...
I've done a couple of stabs at this but I'm a bit confused about what to do with e.g other NuGet dependencies. Should those also be imported from `site-packages` /...
Is that common dependency also available on PyPI? What is the problem you get? It would be really great if we could describe the problem at a higher level, i.e...
No, I don't think it's possible e.g an iterable join is very different from an [observable join](https://github.com/dbrattli/aioreactive/blob/master/aioreactive/combine.py#L60) so each world will need a specific implementation. It will not be possible...
This looks really interesting. Will try. Look forward to when we can eventually be >= Python 3.12 😀
I've tried to make some progress on this one by making methods that takes `_TSource` static methods and use another type when generating e.g: ```py @staticmethod def Some(value: _T1) ->...