GithubHelp home page GithubHelp logo

ts.data.maybe's People

Contributors

joanllenas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

jorgeucano

ts.data.maybe's Issues

Issue with "Is" functions

This is a very nice library. But one issue I came across was the fact that isNothing and isJust are defined as:

typescript
export declare const isJust: (value: Maybe) => boolean;
export declare const isNothing: (value: Maybe) => boolean;


...when it would be much better if they were defined as:

```typescript
export declare const isJust: <T>(value: Maybe<T>) => value is Just<T>;
export declare const isNothing: <T>(value: Maybe<T>) => value is Nothing;

This would allow type narrowing. Unfortunately, I can't write these myself because of another issue which is that you don't export the types for Just and Nothing. So they can't be referred to outside the package. I realized that I can use caseOf as well to narrow types, sometimes it is better to do this in an imperative vs. functional way (although I appreciate the option).

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.