Ivan Sanz Carasa
Ivan Sanz Carasa
Hi, I'm trying to implement scroll restoration when navigating back. Is it possible to get the exact state of the scroll (including everything to render exactly the same way) and...
Hi, I'm working on a templating engine for docx, in which I need to create new elements and deeply modify the xml. When I have my own Paragraph (not yet...
v2
ES6 iteration protocol support Performance Improvements Full refactor of old code ES5, ES6 and UMD targets Improved UnitTests etc
Idea from #31 Use overloads with `Comparers` everywhere, including `Dictionary` constructor
Produces the set intersection of two sequences (deferred execution) Proposed signature: ```ts export interface IQueryable { intersect(other: IQueryable): IEnumerable; } ```
ToLookup
A lookup is a `1:many` inmutable map (multi-map; each key is mapped to an IQueryable of the values with that key). Proposed definition: ```ts toLookup( keySelector: Selector, valueSelector: Selector) :...
Configure gulp to generate browser version (webpack js + typescript definitions without exports)
Correlates the elements of two sequences based on matching keys Proposed definition: ```ts join( inner: IQueryable, pkSelector: Selector, fkSelector: Selector, resultSelector: ((outer: TOut, inner: TInner) => TResult)): TResult; ``` Using...