Skip to content

Commit

Permalink
Update NEWS.md for generated functions
Browse files Browse the repository at this point in the history
cc @tlycken - I adapted some of your language here.  We should probably link to your documentation PR once it is merged, too.  You're welcome to modify this, too.

[av skip]
  • Loading branch information
mbauman committed Apr 20, 2015
1 parent 2a81411 commit df5f4a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ New language features

* Keyword argument names can be computed, using syntax such as `f(; symbol => val)` ([#7704]).

* (TODO pending final syntax) staged functions ([#7311]).
* The `@generated function` enables generation of specialized methods depending
upon the types of its arguments. Sometimes referred to as a staged function,
it operates at two different stages of evaluation. At compile time, the generated
function is called with its arguments bound to the types for which it should
specialize. The quoted expression it returns forms the body of the specialized
method which is then called at run time. ([#7311]).

* (Also with syntax todo) Documentation system for functions, methods, types
and macros in packages and user code ([#8791]). Type `?@doc` at the repl
Expand Down

0 comments on commit df5f4a2

Please sign in to comment.