Skip to content

Commit

Permalink
Bump version to 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Jul 8, 2014
1 parent beb4bf5 commit 420ecb4
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- **0.0.5** Lens
- **0.0.4** Internal improvements
- **0.0.3** Slight changes in API
- **0.0.2** Basic data-flow functionality
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,25 @@ Rollback the transaction. Maybe be called multiple times (consecutives calls are



### Lens

Lenses are composable functional references.
They allow you to *access* and *modify* data potentially very deep within a structure!


#### source.zoom

> zoom (@ : Source a, path : Path a b, eq = egal : b -> b -> boolean) : Source b
Zoom (or focus) into part specified by `path` of the original signal.
One can `set` and `modify` zoomed signals, they act as sources.

```js
var quux = source.zoom("foo.bar.quux");
```



### Equalities

#### egal
Expand Down Expand Up @@ -169,6 +188,7 @@ Note: `README.md` is autogenerated file.
## Release History


- **0.0.5** Lens
- **0.0.4** Internal improvements
- **0.0.3** Slight changes in API
- **0.0.2** Basic data-flow functionality
Expand Down
2 changes: 1 addition & 1 deletion dist/menrva.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 420ecb4

Please sign in to comment.