Skip to content

Commit 1a1e9ab

Browse files
committed
Update README.md
1 parent 57ad9f9 commit 1a1e9ab

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,31 @@ Multiplex is a set of data-structures and implementation of .Net LINQ methods in
1919
* Over 40 LINQ methods (90 method overloads).
2020
* LINQ lazy evaluation.
2121
* TypeScript support.
22-
* Support for [Lambda notation](https://github.com/multiplex/multiplex.js#the-lambda-notation), [Object literal](https://github.com/multiplex/multiplex.js#using-object-literals) and ES6 [Iteration protocols](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
23-
* LINQ support over built-in [Array](https://github.com/multiplex/multiplex.js#--array-and-string) and [String](https://github.com/multiplex/multiplex.js#--array-and-string) classes and [jQuery](https://github.com/multiplex/multiplex.js#--array-like-objects-arguments-nodelist-jquery) objects.
22+
* Support for [Lambda notation](#the-lambda-notation), [Object literal](#using-object-literals) and ES6 [Iteration protocols](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
23+
* LINQ support over built-in [Array](#--array-and-string) and [String](#--array-and-string) classes and [jQuery](#--array-like-objects-arguments-nodelist-jquery) objects.
2424
* Built-in `hash` and `equals` functions to identify objects in a hash-based collection.
2525
* *JSDoc* documentation.
2626
* IntelliSense support for *VisualStudio*.
2727

2828
<br/>
2929
## Get started
30-
* [Basic syntax](https://github.com/multiplex/multiplex.js#basic-syntax)
31-
* [The lambda notation](https://github.com/multiplex/multiplex.js#the-lambda-notation)
32-
* [Executing a query](https://github.com/multiplex/multiplex.js#executing-a-query)
33-
* [LINQ expression trees](https://github.com/multiplex/multiplex.js#linq-expression-trees)
34-
* [Using object literals](https://github.com/multiplex/multiplex.js#using-object-literals)
35-
* [Working with Enumerable](https://github.com/multiplex/multiplex.js#working-with-enumerable)
36-
- [Multiplex Collections](https://github.com/multiplex/multiplex.js#--multiplex-collections)
37-
- [Array and String](https://github.com/multiplex/multiplex.js#--array-and-string)
38-
- [Array-like objects (arguments, NodeList, jQuery)](https://github.com/multiplex/multiplex.js#--array-like-objects-arguments-nodelist-jquery)
39-
- [Enumerator interface](https://github.com/multiplex/multiplex.js#--enumerator-interface)
40-
- [Regular JavaScript objects](https://github.com/multiplex/multiplex.js#--regular-javascript-objects)
41-
- [ECMAScript 6 iteration protocols](https://github.com/multiplex/multiplex.js#--ecmascript-6-iteration-protocols)
42-
* [Iteration protocols](https://github.com/multiplex/multiplex.js#iteration-protocols)
43-
- [ES6 Iteration protocols](https://github.com/multiplex/multiplex.js#es6-iteration-protocols)
44-
- [Generator functions](https://github.com/multiplex/multiplex.js#generator-functions)
45-
- [Legacy generator functions](https://github.com/multiplex/multiplex.js#legacy-generator-functions)
46-
- [Using legacy generator functions as Enumerable](https://github.com/multiplex/multiplex.js#using-legacy-generator-functions-as-enumerable)
30+
* [Basic syntax](#basic-syntax)
31+
* [The lambda notation](#the-lambda-notation)
32+
* [Executing a query](#executing-a-query)
33+
* [LINQ expression trees](#linq-expression-trees)
34+
* [Using object literals](#using-object-literals)
35+
* [Working with Enumerable](#working-with-enumerable)
36+
- [Multiplex Collections](#--multiplex-collections)
37+
- [Array and String](#--array-and-string)
38+
- [Array-like objects (arguments, NodeList, jQuery)](#--array-like-objects-arguments-nodelist-jquery)
39+
- [Enumerator interface](#--enumerator-interface)
40+
- [Regular JavaScript objects](#--regular-javascript-objects)
41+
- [ECMAScript 6 iteration protocols](#--ecmascript-6-iteration-protocols)
42+
* [Iteration protocols](#iteration-protocols)
43+
- [ES6 Iteration protocols](#es6-iteration-protocols)
44+
- [Generator functions](#generator-functions)
45+
- [Legacy generator functions](#legacy-generator-functions)
46+
- [Using legacy generator functions as Enumerable](#using-legacy-generator-functions-as-enumerable)
4747

4848

4949
<br/>
@@ -215,7 +215,7 @@ mx("str").union("ing").toArray(); // ["s", "t", "r", "i", "n", "g"]
215215
````
216216

217217
Note that, in the example above the string object is queried as a sequence of characters.
218-
In practice, LINQ operations accept any argument implementing [ES6 iteration protocols](https://github.com/multiplex/multiplex.js#es6-iteration-protocols).
218+
In practice, LINQ operations accept any argument implementing [ES6 iteration protocols](#es6-iteration-protocols).
219219

220220
<br/>
221221
#### - Array-like objects: `arguments`, `NodeList`, `jQuery`

0 commit comments

Comments
 (0)