Git Product home page Git Product logo

Comments (3)

elkarouani avatar elkarouani commented on August 22, 2024

Hi @luckydog12, you can identify an example so your question can be answered precisely !

from 1loc.

luckydog12 avatar luckydog12 commented on August 22, 2024

const clone = <T, _>(arr: T[]): T[] => [...arr]
i try to ignore _ , use < T > like this: const clone = < T > (arr: T[]):T[] => [...arr]
it also work, so i don't know _ for what?????
can u understand what i mean ?

from 1loc.

sunmaobin avatar sunmaobin commented on August 22, 2024

@luckydog12 <T, _> 相当于是2个参数类型的泛型约束,就像 <T, U> 写法一样,只是这里第二个参数类型约束没用上,因为你的示例代码只有一个参数,如果把你的示例改改,可能就好理解了。
比如:const clone = <T, _>(arr:T[], arr2:_[]):(T|_)[] => [...arr, ...arr2]
等同于:const clone = <T, U>(arr:T[], arr2:U[]):(T|U)[] => [...arr, ...arr2]

from 1loc.

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.