Giter Site home page Giter Site logo

williamareynolds / ts-cat Goto Github PK

View Code? Open in Web Editor NEW
7.0 1.0 0.0 747 KB

A static-land and fantasy-land compliant library containing interfaces for common type-classes and common instances of them.

Home Page: https://williamareynolds.github.io/ts-cat/

License: MIT License

TypeScript 100.00%
category-theory typescript-library typescript maybe maybe-monad functor applicative monad fantasy-land fantasy-land-spec

ts-cat's Introduction

ts-cat

Build Status Coverage Status Codacy Badge npm version Commitizen friendly semantic-release

A static-land and fantasy-land compliant library containing interfaces for common type-classes and common instances of them.

This library is currently in very active development. Be aware that changes will be frequent, but that breaking changes will always incur a major version change.

Limitations

Static Interfaces

Be aware that Typescript simply does not support some typing behaviors that would make some things work as expected. The most serious of these issues is that static methods cannot be specified in interfaces. This means that a fantasy-land compliant interface for Applicative cannot be properly created because of can't be enforced as a class method. There is currently an open issue for this here.

Static Types

static-land implementations are limited in their ability to properly type results. This appears to be an issue with typescript, rather than an issue with the implementation. Considering the following demonstration with Identity<number>:

import { identity } from './src/instance/Identity'

const sample = identity.of(5)
const mapped = identity.map(a => a + 5, sample)

In this case, typescript may think the type of mapped is Identity<any>, even though it's actually Identity<number>. If we move the static functions from the identity object to the Identity class as static functions, the type issues are resolved. Unfortunately, we would have to define those static functions on the class, rather than setting them equal to the functions from the identity object. Due to Typescript's lack of static interface declarations, this causes us to lose the value of having an interface for the static functions.

Documentation

fantasy-land

static-land

Theory and Usage

API Docs

ts-cat's People

Contributors

williamareynolds avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

ts-cat's Issues

Implement static interface on class

Currently, the static-land compliant interface is implemented on an object currently. This isn't very convenient, but until the following Typescript issue is decided on, this can't be corrected.

microsoft/TypeScript#33892

This issue can be picked up if static interfaces are adopted in Typescript.

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.