`where` in function definitions in julia-0.6

前端 未结 1 1359
暖寄归人
暖寄归人 2020-12-30 21:27

I am trying to understand the new type system in Julia v0.6, based on reading the release notes.

Can anyone tell me what

inv(M::Matrix{T}) where T &l         


        
相关标签:
1条回答
  • 2020-12-30 22:09

    The new syntax means the same thing but can be used in more circumstances and can express more constructs and eliminates a number of conceptual ambiguities, especially surrounding parametric constructors. The old syntax will be deprecated in 0.6 and some of the old syntax will be reclaimed with different meaning in 1.0. Fundamentally, the problem with F{T}(args...) is that the F{T} part is conceptually ambiguous – the parser knows what it means, but it's often confusing to humans:

    • In isolation F{T} means the parametric type F with type parameter T.

    • Followed by parens, not as part of a method definition, F{T}(args...) means to apply the type F{T} to the arguments args... as a function, typically constructing an instance of the type F{T}.

    • Followed by parens and equals, i.e. as part of a method definition as in F{T}(args...) = expr, it means to define a method for F as a function, with type parameters T formal arguments args... and definition expr.

    In particular, there is no syntax for either of these:

    • Adding a method to F{T} for the concrete value of T in the current scope.

    • Adding a method to F{T} for each parametric value T.

    This situation causes constructor syntax in Julia 0.5 and prior to be more confusing and unintuitive than necessary. In Julia 1.0 type parameters and constructors will be both more intuitive and consistent, following these principles:

    • The syntax used to define a method always matches the syntax used to call it.
    • The F{T} syntax always refers to the type F with parameter T.
    • Type parameters are always introduced by where clauses.

    There will be a more detailed explanation of the changes when 0.6 comes out, probably in a blog post on highlights of the 0.6 release.

    0 讨论(0)
提交回复
热议问题