Compl Yue

Results 15 comments of Compl Yue

On second thought, I realize there also needs a Compact Region building api, that takes a designated mmap'ed region as target storage space, instead of malloc-on-demand or sth similar. Is...

I get it, thanks. Then I'm not aware which api I can use to build a Compact Region at specified address (within a mmap'ed region), does such an api already...

I'm not very familiar with internals of GHC, does the memory manager have some sorta extension mechanism, viable for me to mmap a region and persuade the allocator to use...

@fendor thanks for the information, you replied so quick! :) of course please ping me.

Confess I forgot that I had put ```json "files.associations": { "*.hsc": "haskell" } ``` In my VSCode's user settings.json, or opening `.hsc` files won't trigger HIE loading at all. So...

@pfitzseb Thanks for quick response! I had a glance at `docbrowser/documentation.ts`, there markdown payload is obtained from LS and rendered into html for the show. I think it's not too...

> `with_value_of(contextvar,func,*args)` If we provide a similar API for frameworks and libraries like: * `with_effect(contextvar, eff_func, business_func, *args)` define an effectful behavior identified by `contextvar`, in form of a function,...

Sorry I'm not familiar with Trio yet. But I'm surprised to hear a task can move between scopes, isn't the idea of structural concurrency to describe tasks with lexical scoping,...

A simplified motivating example for my case, but maybe less relevant to Trio so far: ```python class CurrSymbol: @static def curr(): ... class Price: def __init__(self, field='close'): self.field=field def tensor():...

I suggest it's kinda safe to follow Haskell in this regard, there both `quot` / `rem` and `div` / `mod` are defined and honored equally, as no one pair is...