Project

colby

0.0
No commit activity in last 3 years
No release in over 3 years
Small wrapper and functions for persistent, immutable data structures.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

Colby

A small wrapper and functions to make working with persistent, immutable data structures easy.

  • This project depends on Hamster
  • Mori is a source of ideas for this library

Testing

  • rspec .

Installation

gem install colby

or

gem build ./colby.gemspec gem install --local ./colby-x.x.x.gem

Usage

require 'colby'

include Colby::Core

# Now you can build hash_map, vec, list, or set

# Also, you have clojure-like functions such as assoc, get, conj, has_key

# check the spec to see examples