Emilio

Results 8 comments of Emilio

If one day you want to consider it again, these are my arguments: * In finance calculations based on compound interest require `ln` and `exp` * Weighted geometric averages are...

Hi, I also waiting for this. I shall use it for render jade and markdown files. I consider than jade, markdown and other similar file types are also "static" files.

I think that `query_timeout` is useful in other situations. For example when you have a expensive query (like a gruoup by of joins on huge tables or a function that...

I think that is not in this case. In ` a not like b` that means: `not (a like b)`, but not `a not (like b)` because `not` is an...

@MikeMcl your question is excelent. I think that the decimal places can be a parameter of the function (may be an optional one that by default is the default of...

Here is anohter example: I have a numeric library. Now I wan't to generalize it to get number or bigint (but not both). ```ts function add(a: Num, b: Num) {...

I suggest the following syntax: `T extends T1 || T2`. Readed T exteds type T1 or extends type T2. When I see `T extends T1|T2` y read T extends type...