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
- Host: GitHub
- URL: https://github.com/devinus/kvc
- Owner: devinus
- Created: 2013-01-02T22:33:47.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-03-21T15:26:48.000Z (about 12 years ago)
- Last Synced: 2025-07-14T22:03:17.163Z (11 months ago)
- Language: Elixir
- Homepage: https://github.com/devinus/kvc
- Size: 119 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]
```