An open API service indexing awesome lists of open source software.

https://github.com/devinus/kvc

Simple key-value coding for Elixir
https://github.com/devinus/kvc

Last synced: 10 months ago
JSON representation

Simple key-value coding for Elixir

Awesome Lists containing this project

README

          

# KVC

A simple Elixir KVC module modelled after Ember.js KVC.

## Example

```elixir
list = [{ "foo", [[{ "bar", :baz }], [{ "bar", :quux }]]}]
KVC.get(list, "foo.@each.bar") #=> [:baz, :quux]
```