Skip to content

Commit

Permalink
[+]: added more examples v2
Browse files Browse the repository at this point in the history
  • Loading branch information
voku committed Jan 31, 2016
1 parent a63e560 commit 2a8233a
Showing 1 changed file with 50 additions and 3 deletions.
53 changes: 50 additions & 3 deletions README.md
Expand Up @@ -18,9 +18,56 @@ a::create('Array', 'Array')->unique()->append('y')->implode() // Arrayy
```

* [Instance methods](#instance-methods)
* [append](#appendmixed-value)
* [prepend](#prependmixed-value)
* TODO ... add more links
* ["set a array value"](#set-a-array-value)
* ["get a array value"](#get-a-array-value)
* ["delete a array value"](#delete-a-array-value)
* ["check if a array value is-set"](#check-if-a-array-value-is-set)
* ["simple loop with a Arrayy-object"](#simple-loop-with-a-arrayy-object)
* [append](#appendmixed-value--arrayy)
* [at](#atclosure-closure--arrayy)
* [average](#averageint-decimals--intdouble)
* [clean](#clean--arrayy)
* [contains](#containsmixed-value--boolean)
* [diff](#diffarray-array--arrayy)
* [each](#eachclosure-closure--array)
* [filter](#filterclosurenull-closure--arrayy)
* [find](#findclosure-closure--mixed)
* [first](#firstnullint-take--arrayy)
* [getColumn](#getcolumnmixed-columnkey-mixed-indexkey--arrayy)
* [implode](#implodestring-with--string)
* [initial](#initialint-to--arrayy)
* [intersection](#intersectionarray-search--arrayy)
* [intersects](#intersectsarray-search--boolean)
* [isAssoc](#isassoc--boolean)
* [isMultiArray](#ismultiarray--boolean)
* [last](#lastnullint-take--arrayy)
* [length](#length--int)
* [max](#max--mixed)
* [matches](#matchesclosure-closure--boolean)
* [matchesAny](#matchesanyclosure-closure--boolean)
* [mergeAppendKeepIndex](#mergeappendkeepindexarray-array--arrayy)
* [mergePrependKeepIndex](#mergeprependkeepindexarray-array--arrayy)
* [mergeAppendNewIndex](#mergeappendnewindexarray-array--arrayy)
* [mergePrependNewIndex](#mergeprependnewindexarray-array--arrayy)
* [min](#min--mixed)
* [prepend](#prependmixed-value--arrayy)
* [random](#randomintnull-take--arrayy)
* [randomWeighted](#randomweightedarray-array-intnull-take--arrayy)
* [reject](#rejectclosure-closure--arrayy)
* [removeFirst](#removefirst--arrayy)
* [removeLast](#removelast--arrayy)
* [removeValue](#removevaluemixed-value--arrayy)
* [replaceKeys](#replacekeysarray-keys--arrayy)
* [replaceOneValue](#replaceonevaluemixed-search-mixed-replacement--arrayy)
* [replaceValues](#replacevaluesstring-search-string-replacement--arrayy)
* [rest](#restint-from--arrayy)
* [reverse](#reverse--arrayy)
* [searchIndex](#searchindexmixed-value--arrayy)
* [searchValue](#searchvaluemixed-index--arrayy)
* [sortKeys](#sortkeysstring-direction--arrayy)
* [split](#splitint2-numberofpieces-boolfalse-preservekeys--arrayy)
* [shuffle](#shuffle--arrayy)
* [unique](#unique--arrayy)
* [Tests](#tests)
* [License](#license)

Expand Down

0 comments on commit 2a8233a

Please sign in to comment.