Giter VIP home page Giter VIP logo

Comments (3)

Evertt avatar Evertt commented on April 27, 2024 1

@whzx5byb wow, that is so much closer than I have been able to get. I'm inclined to say that that is good enough to be able to close this issue.

I have been trying to see if I can create a second overload to cover the false case, but I'm not managing that one just yet. Although that's now a little less important, because I can just infer myself that if the function's return-type is boolean instead of true, that I should interpret that as false.

But, if you happen to be willing to try to help me achieve the false case as well, then I'd be super grateful!

Edit

@whzx5byb never mind! I figured it out! Here it is!

from typescript.

fatcerberus avatar fatcerberus commented on April 27, 2024

I think I've answered all of these questions above, didn't I?

You didn't answer the most important one: what is the use case? AFAICT, in any case where you can know at compile time what the result of a type guard is going to be, then there's no reason to induce runtime overhead by calling it.

from typescript.

whzx5byb avatar whzx5byb commented on April 27, 2024

Does Function Overloading work for you?

type Primitive = string | number | bigint | boolean | symbol | null | undefined
declare function isPrimitive<T extends Primitive>(thing: T): true;
declare function isPrimitive(thing: unknown): thing is Primitive;

// Example usage:
const value: unknown = "hello";
if (isPrimitive(value)) {
  value // value is narrowed to be a `Primitive`
  // ^? const value: Primitive
}

const r = isPrimitive(123) // returns the boolean literal `true`
//    ^? const r: true

from typescript.

Related Issues (20)

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.