2.0.10 • Published 8 months ago

js-generic-functions v2.0.10

Weekly downloads
2
License
ISC
Repository
github
Last release
8 months ago

#+TITLE: README for js-generic-functions #+AUTHOR: Ed L #+HTML_HEAD: #+EXPORT_FILE_NAME: docs/index.html

[https://www.npmjs.com/package/js-generic-functions] [https://circleci.com/gh/fiddlerwoaroof/js-generic-functions.svg?style=svg]

** What is this?

An implementation of generic functions based on CLOS and the protocols defined in the Art of the Metaobject protocol, adapted for JS. These adaptations include using the prototype chain instead of classes and additionally providing extensible specializers (as in https://github.com/sbcl/specializable). For the moment, this is only used to provide a Shape specializer, as the details of the interaction between such specializers and subtyping are an open question.

** Docs

*** Basic Usage

#+NAME: imports #+BEGIN_SRC js import { defgeneric } from "./genfuns.js"; #+END_SRC

Defining a function works by calling src_js{defgeneric} with some information about the function name and arguments. Methods are then added by calling the appropriate methods with a pair of arguments: a list of specializers (prototypes in the simple case, although there are other options) and a function to run if those specializers match.

#+NAME: basic-definition #+BEGINSRC js const example1generic = defgeneric("example1", "a", "b") .primary(Number, Object, (n, __) => 1, n) .primary(Object, Number, (, n) => 2, n) .primary(Object, Object, (_, __) => 5, null); #+END_SRC

After a generic function has been defined, you can get the function to call it by accessing its src_js{.fn} attribute.

#+NAME: call-the-function #+BEGIN_SRC js const example1 = example1generic.fn;

expect(example1(5, {})).toEqual(1, 5); expect(example1({}, 6)).toEqual(2, 6); expect(example1("hello", {})).toEqual(5, null); expect(example1({}, "world")).toEqual(5, null); expect(example1({}, {})).toEqual(5, null); #+END_SRC

If a separate reference to the generic function object is maintained, you can add methods like so:

#+NAME: add-methods #+BEGINSRC js example1generic .primary(String, Object, (s, __) => 3, s) .primary(Object, String, (, s) => 4, s);

expect(example1("hello", {})).toEqual(3, "hello"); expect(example1({}, "world")).toEqual(4, "world"); #+END_SRC

*** Other sorts of specializers #+NAME: specializer-import #+BEGIN_SRC js import { Shape, Eql } from "./genfuns.js"; #+END_SRC

#+NAME: specializer-examples #+BEGIN_SRC js const example2 = defgeneric("example2", "inp") .primary(Shape("a", "b"), inp => a: ${inp.a} b: ${inp.b}) .primary(Shape("a"), inp => a: ${inp.a} b: <missing>) .primary([Shape("c", 1)], inp => c: one) .primary([Shape("c", 2)], inp => c: two) .primary(Eql(1), inp => "one").fn;

expect(example2({ a: 3, q: "whatever" })).toEqual("a: 3 b: "); expect(example2({ a: 3, b: 4, q: "whatever" })).toEqual("a: 3 b: 4"); expect(example2({ c: 1, q: "whatever" })).toEqual("c: one"); expect(example2({ c: 2, q: "whatever" })).toEqual("c: two"); expect(example2(1)).toEqual("one"); #+END_SRC

#+BEGIN_SRC js :tangle src/doc.test.js :comments noweb :noweb tangle :exports none <> <>

describe("defgeneric", () => { test("methods get called appropriately", () => { <>

  <<call-the-function>>

  <<add-methods>>

  <<sample1>>
});
test ('specializers work as expected', () => {
  <<specializer-examples>>
})

}); #+END_SRC

2.0.10

8 months ago

2.0.7

11 months ago

2.0.6

11 months ago

2.0.9

11 months ago

2.0.8

11 months ago

2.0.5

1 year ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.4

2 years ago

2.0.1

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.2.2

2 years ago

1.0.10

2 years ago

2.0.0

2 years ago

1.0.9

4 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago