How to NoInfer (new TS 5.4 Feature)

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 22

  • @andrew-burgess
    @andrew-burgess  4 หลายเดือนก่อน

    BTW, here's the code from the last (best, imho) example in the video! Thanks for watching! shaky.sh/pastes/typescript-noinfer/

  • @alexjohnson-bassworship3150
    @alexjohnson-bassworship3150 4 หลายเดือนก่อน +9

    Best NoInfer explanation on TH-cam to date!! Love all your videos, Andrew! Keep 'em coming...

  • @ralacerda12
    @ralacerda12 4 หลายเดือนก่อน +2

    What a GREAT lesson. I definitely faced those problems before at work, I'll probably sent it to others tomorrow

  • @elhamzeinodini4828
    @elhamzeinodini4828 4 หลายเดือนก่อน

    Best TS channel ever❤

  • @i.j.5513
    @i.j.5513 4 หลายเดือนก่อน +3

    Very nicely explained !👍

  • @EmmanuelOdii80
    @EmmanuelOdii80 2 หลายเดือนก่อน

    Very well explained.

  • @offroaders123
    @offroaders123 4 หลายเดือนก่อน

    This video is great! So glad to have this feature in TS now 🔥

  • @hugodsa89
    @hugodsa89 4 หลายเดือนก่อน

    I remember when you started your typescript structural metaprogramming journey. You’ve come far mate. Though I’d probably want a tuple return to maintain order and not have an array with multiple elements of the same string value.
    export namespace Union {
    export type ToIntersection = (
    U extends never ? never : (arg: U) => never
    ) extends (arg: infer I) => void
    ? I
    : never;
    export type ToTuple = Union.ToIntersection<
    T extends never ? never : (t: T) => T
    > extends (_: never) => infer W
    ? [...Union.ToTuple, W]
    : [];
    }

  • @rockNbrain
    @rockNbrain 4 หลายเดือนก่อน

    Great job dude ! 🎉

  • @artyomtaranenko2267
    @artyomtaranenko2267 4 หลายเดือนก่อน

    Need more content with TS

  • @jancijak9385
    @jancijak9385 4 หลายเดือนก่อน

    I would follow this video with how to add the NoInfer type as an excluded, not recommended keyword in lint Sonar.

  • @vim55k
    @vim55k 4 หลายเดือนก่อน

    Great

  • @MrJ3
    @MrJ3 4 หลายเดือนก่อน

    Very cool!

  • @mettle_x
    @mettle_x 4 หลายเดือนก่อน

    Side note: ma man looks good with the beard.

  • @mme725
    @mme725 4 หลายเดือนก่อน

    2:00 ... What if you NoInfer both a and b? What does the linter say then?

  • @yazaldefilimone
    @yazaldefilimone 4 หลายเดือนก่อน

    ohhh your fonts is so cool 🥺...what's?

  • @尼古拉丝土豆
    @尼古拉丝土豆 4 หลายเดือนก่อน

    before NoInfer, must know when infer. When?

  • @capybara0612
    @capybara0612 4 หลายเดือนก่อน

    Shouldn't this be the default?

  • @mahadevovnl
    @mahadevovnl 4 หลายเดือนก่อน +1

    That createMenu function makes absolutely no sense, code wise. It doesn't even create a menu. Why would you ever want to construct anything like that, that way?
    Examples work best with real-life bits of code. This is just confusing because I'm constantly wondering "who would ever write bad code like this?" even if it kinda explains the NoInfer thing :)