Giter Site home page Giter Site logo

classy-immutable's Introduction

classy-immutable

Immutable instances of ES6 classes.

Examples

Setup

import Immutable from 'classy-immutable';

class MyImmutableClass extends Immutable {
    constructor(x, y) {
        this.x = x;
        this.y = y;
    }

    get sum() {
        return this.x + this.y;
    }
}

Acts like a standard ES6 class...

let mic = MyImmutableClass.create(5, 10);
(mic.x === 5) === true;
(mic.y === 10) === true;
(mic.sum === 15) === true;

...except that setters are no-ops.

mic.x = 100;
(mic.x === 5) === true;

Use the 'set', 'setIn', 'merge', or 'without' methods instead.

let mic2 = mic.set('x', 100);
(mic2.x === 100) === true;
(mic2.y === 10) === true;
(mic2.sum === 110) === true;

A fresh immutable instance is created with each modification.

(mic === mic2) === false;

Inheritance works as expected.

(mic instanceof MyImmutableClass) === true;
(mic2 instanceof MyImmutableClass) === true;
(mic instanceof Immutable) === true;
(mic2 instanceof Immutable) === true;

Methods

static create

let mic = MyImmutableClass.create(5, 10);
(mic instanceof MyImmutableClass) === true;

static object

let i = Immutable.object({ x: 1, y: 'so easy', z: [2, 4, 6, 8] });
(i instanceof Immutable) === true;

set

let mic = MyImmutableClass.create(5, 10),
    mic2 = mic.set('x', 50);
(mic.x === 5) === true;
(mic.y === 10) === true;
(mic2.x === 50) === true;
(mic2.y === 10) === true;
(mic === mic2) === false;

setIn

merge

without

asMutable

classy-immutable's People

Contributors

originalgremlin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.