Hongbo Zhang

Results 243 comments of Hongbo Zhang

hi @gmlewis we will add features like this which is more general and readable: ``` guard let Some (x) = expr else { return None } guard let (Some (x),...

@peter-jerry-ye can we do it for this week's release?

compare is needed, not sure about hash though

I agree we should add hash for Array, user can always misuse HashMap if they want

it is okay to move .cm[ij] files into lib, but it is complex for js files

FYI, the `update` in OCaml is more general: ```ocaml val update: key -> ('a option -> 'a option) -> 'a t -> 'a t (** [update key f m] returns...

Indeed, this looks more uniform, but it makes code analyzer more difficult. From what I can tell, it does not do any analysis or check though. ```fs open Fable.Core []...

yeah, it is the road map(after we finish the data representation changes). The flow parser is more tested (used more). On Wed, May 6, 2020 at 5:21 AM Javier Chávarri...

I am thinking we can just use the most intuitive way of writing FFIs ```ocaml external add : int -> int -> int = "function(x,y){ return x + y }...