Mehdi Bouaziz
Mehdi Bouaziz
That would be great indeed! Let us know how we can help you add support for it
Us neither :(
Looking at #1028, there may be an easy way using compilation databases, but it still requires a fix
@skiplabsdaniel They all appear in the git history, anyone can see them.
In all histories since we haven't rewritten them during the history rewrite. I'll remove them from this file though, they still appear to anyone running `git shortlog -se` for example
@jberdine I'll let each one manage their e-mail addresses, I only used what was already publicly available. Cc @gregsexton
It's not clear what users would expect from typescript: - the [Less than operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Less_than) converts to primitive types, knows how to compare strings but otherwise converts to numeric values; -...
From what I read, `NonEmptyIterator`s usage are: 1. use `first` and ignore the rest (usually because the author knows there are no other values), though I consider this a bad...
A `Sequence` is a container that can be traversed many times, you can always start from the beginning. An `Iterator` is a single traversal, you can only work from where...